flake8-unused-arguments
flake8-unused-arguments copied to clipboard
Flake8 plugin to warn against unused arguments in functions
_ is a convention for variable that are not used afterwards.
It would be great if there were a way to ignore inherited arguments in overridden methods in a subclass. For example, suppose we have the following code: ```py class BaseClass:...
Hi there! Thanks for this awesome plugin! I'm wondering if there's any plan for making it available through [conda-forge](https://conda-forge.org/). Most users of open-source scientific projects (like [Fatiando a Terra](https://www.fatiando.org), the...
the arg is called unused-arguments-ignore-dunder but it is stored in unused-arguments-ignore-dunder-methods. This means that if you want to use this in a config you need to do unused-arguments-ignore-dunder-methods = True...
When a fixture is not used but needs to be included for some reasons, [flake8-unused-arguments](https://github.com/nhoad/flake8-unused-arguments) will rightfully issue a warning. For instance, a fixture setup a specific database state and...