Skip to content

Commit 8c06197

Browse files
authored
Merge pull request #1746 from PyCQA/bump-pycodestyle
upgrade pycodestyle to 2.10
2 parents 647996c + 047e6f8 commit 8c06197

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ package_dir =
3535
# https://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
3636
install_requires =
3737
mccabe>=0.7.0,<0.8.0
38-
pycodestyle>=2.9.0,<2.10.0
38+
pycodestyle>=2.10.0,<2.11.0
3939
pyflakes>=2.5.0,<2.6.0
4040
# 3.8.0's importlib.metadata is broken
4141
python_requires = >=3.8.1

src/flake8/plugins/pycodestyle.py

-8
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@
2626
from pycodestyle import missing_whitespace_around_operator as _missing_whitespace_around_operator # noqa: E501
2727
from pycodestyle import module_imports_on_top_of_file as _module_imports_on_top_of_file # noqa: E501
2828
from pycodestyle import python_3000_async_await_keywords as _python_3000_async_await_keywords # noqa: E501
29-
from pycodestyle import python_3000_backticks as _python_3000_backticks
30-
from pycodestyle import python_3000_has_key as _python_3000_has_key
3129
from pycodestyle import python_3000_invalid_escape_sequence as _python_3000_invalid_escape_sequence # noqa: E501
32-
from pycodestyle import python_3000_not_equal as _python_3000_not_equal
33-
from pycodestyle import python_3000_raise_comma as _python_3000_raise_comma
3430
from pycodestyle import tabs_obsolete as _tabs_obsolete
3531
from pycodestyle import tabs_or_spaces as _tabs_or_spaces
3632
from pycodestyle import trailing_blank_lines as _trailing_blank_lines
@@ -83,11 +79,7 @@ def pycodestyle_logical(
8379
yield from _missing_whitespace_around_operator(logical_line, tokens)
8480
yield from _module_imports_on_top_of_file(logical_line, indent_level, checker_state, noqa) # noqa: E501
8581
yield from _python_3000_async_await_keywords(logical_line, tokens)
86-
yield from _python_3000_backticks(logical_line)
87-
yield from _python_3000_has_key(logical_line, noqa)
8882
yield from _python_3000_invalid_escape_sequence(logical_line, tokens, noqa)
89-
yield from _python_3000_not_equal(logical_line)
90-
yield from _python_3000_raise_comma(logical_line)
9183
yield from _whitespace_around_comma(logical_line)
9284
yield from _whitespace_around_keywords(logical_line)
9385
yield from _whitespace_around_named_parameter_equals(logical_line, tokens)

0 commit comments

Comments
 (0)