Skip to content

Commit ebad305

Browse files
authored
Merge pull request #1974 from PyCQA/update-plugins
update versions of pycodestyle / pyflakes
2 parents a7e8f62 + d56d569 commit ebad305

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ classifiers =
2929
packages = find:
3030
install_requires =
3131
mccabe>=0.7.0,<0.8.0
32-
pycodestyle>=2.12.0,<2.13.0
33-
pyflakes>=3.2.0,<3.3.0
32+
pycodestyle>=2.13.0,<2.14.0
33+
pyflakes>=3.3.0,<3.4.0
3434
python_requires = >=3.9
3535
package_dir =
3636
=src

src/flake8/plugins/pyflakes.py

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"UndefinedName": "F821",
5656
"UndefinedExport": "F822",
5757
"UndefinedLocal": "F823",
58+
"UnusedIndirectAssignment": "F824",
5859
"DuplicateArgument": "F831",
5960
"UnusedVariable": "F841",
6061
"UnusedAnnotation": "F842",

0 commit comments

Comments
 (0)