|
26 | 26 | from pycodestyle import missing_whitespace_around_operator as _missing_whitespace_around_operator # noqa: E501 |
27 | 27 | from pycodestyle import module_imports_on_top_of_file as _module_imports_on_top_of_file # noqa: E501 |
28 | 28 | 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 |
31 | 29 | 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 |
34 | 30 | from pycodestyle import tabs_obsolete as _tabs_obsolete |
35 | 31 | from pycodestyle import tabs_or_spaces as _tabs_or_spaces |
36 | 32 | from pycodestyle import trailing_blank_lines as _trailing_blank_lines |
@@ -83,11 +79,7 @@ def pycodestyle_logical( |
83 | 79 | yield from _missing_whitespace_around_operator(logical_line, tokens) |
84 | 80 | yield from _module_imports_on_top_of_file(logical_line, indent_level, checker_state, noqa) # noqa: E501 |
85 | 81 | 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) |
88 | 82 | 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) |
91 | 83 | yield from _whitespace_around_comma(logical_line) |
92 | 84 | yield from _whitespace_around_keywords(logical_line) |
93 | 85 | yield from _whitespace_around_named_parameter_equals(logical_line, tokens) |
|
0 commit comments