flake8 extension to warn on unused function arguments
Project description
flake8-unused-arguments
A flake8 plugin that checks for unused function arguments.
This package adds the following warnings:
U100
- An unused argument.U101
- An unused argument starting with an underscore
Configuration options also exist:
unused-arguments-ignore-abstract-functions
- don't show warnings for abstract functions.unused-arguments-ignore-overload-functions
- don't show warnings for overload functions.unused-arguments-ignore-override-functions
- don't show warnings for overridden functions.unused-arguments-ignore-stub-functions
- don't show warnings for empty functions.unused-arguments-ignore-variadic-names
- don't show warnings for unused *args and **kwargs.unused-arguments-ignore-lambdas
- don't show warnings for all lambdas.unused-arguments-ignore-nested-functions
- don't show warnings for nested functions. Only show warnings for functions in the top level of a module, or methods of a class in the top level of a module.unused-arguments-ignore-dunder
- don't show warnings for double-underscore methods. These methods implement or override native builtin methods which have a specific signature. Therefore arguments must always be present. This is the case of methods like__new__
,__init__
,__getitem__
,__setitem__
,__reduce_ex__
,__enter__
,__exit__
, etc.
Changelog
0.0.13
- Added a new option for ignoring functions decorated with the override decorator. Thanks to Thomas M Kehrenberg for contributing this!
0.0.12
- Fixed an issue causing flake8 --help to break. Thanks to Calum Young for contributing this fix!
- Starting from this release, automated CI runs on each Github PR. Thanks again to Calum Young for contributing this work!
0.0.11
- Added a new option for ignoring functions decorated with overload.
- Added a new option for ignoring dunder methods (double-underscore) methods.
0.0.10
- Added new options for ignoring lambdas and nested functions. Thanks to João Eiras for contributing these!
0.0.9
- Check nested functions.
- Don't crash if an attribute is used in a raise statement.
0.0.8
- Whoops, report the right version when using flake8 --help.
0.0.7
- The first unused argument in a @classmethod decorated function wasn't properly detected. Thanks to Sebastian Dietrich for contributing the fix!
0.0.6
- Stub functions that have docstrings are now correctly detected as stub functions
- Functions with only a docstring are considered stub functions
0.0.5
- The positions reported are now for the arguments themselves, rather than the function
0.0.4
- Wrong project name in the readme, whoopsies
0.0.3
- treat functions that start with "raise NotImplementedError()" as stub functions
0.0.2
- fixed error in packaging
0.0.1
- initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flake8-unused-arguments-0.0.13.tar.gz
.
File metadata
- Download URL: flake8-unused-arguments-0.0.13.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5894d294424bf7915e44dff0917222c454151016f96edc55b9f847bf307f3f7 |
|
MD5 | 2679a1fdc9f2ce3d78950ced1b14789e |
|
BLAKE2b-256 | 43538f9c50671a0eedb716a8472854cfeb883b481d18ee97aa8a816eeff21461 |
File details
Details for the file flake8_unused_arguments-0.0.13-py3-none-any.whl
.
File metadata
- Download URL: flake8_unused_arguments-0.0.13-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df6a76b73a6ce67720332182a80f2f0a80783cab1ccae8175f39787cd3a74b31 |
|
MD5 | 635d59026ddf088c85bd2971e290be29 |
|
BLAKE2b-256 | fccfd485ba0d7ef821c3c988e7aa02f913d7b9175ff4f94432bcc2d73d2e75bc |