- **flake8-too-many** is now compatible with Flake8 5.0
BREAKING ⚠️
- **flake8-too-many** is no longer compatible with Python 3.6
0.1.4
Bug Fixes 🐛
- Ignore `_` special identifiers, e.g. `def f(_)` and `a, _, c = 1, 2, 3` - Count unpacking targets in multiple assignments, e.g. `a, b, c = d = 1, 2, 3`
0.1.3
Features 🎉
- **flake8-too-many** is now compatible with Python 3.10 & Flake8 4.0
0.1.2
BREAKING ⚠️
- `--max-function-arguments` now defaults to 6 (from 5) - `--max-unpacking-targets` now defaults to 3 (from 5)
0.1.1
Features 🎉
- Support ignoring defaulted arguments when checking the number of function arguments, with `--ignore-defaulted-arguments`
0.1.0
Features 🎉
- Check the number of function arguments with `--max-function-arguments` - Check the number of function return values with `--max-function-return-values` - Check the number of return statements in a function with `--max-function-return-stmts` - Check the number of unpacking targets with `--max-unpacking-targets`