Erik VanderWerf

Results 6 issues of Erik VanderWerf

Hello! I have a generic Serializer class which declares a `serialize(...)` method. My issue is that the superclass abstract method uses a generic parameter name (`o`) which is hidden by...

```python from abc import ABC, abstractmethod class MySpam(ABC): """Docstring.""" @abstractmethod def spam(self) -> str: """Spam.""" float: """Sausage.""" int: """Eggs."""

### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your issue described in the documentation? - [X] I have read the...

os:Windows

I did see the discussion on #60 and #480, and as far as I can tell there is not any way to selectively control a subset of magic methods that...

Hello! I think a great addition to this library would be an `allowed_noqa` config option (name fungible 😆), which allows a project lead to specify a global set of noqa...

This is my first PR here, please help me out with anything else that might be required. This is my attempt at addressing #678. It works by injecting the `javaName`...