| 
23 | 23 | from pycodestyle import maximum_line_length as _maximum_line_length  | 
24 | 24 | from pycodestyle import missing_whitespace as _missing_whitespace  | 
25 | 25 | from pycodestyle import missing_whitespace_after_keyword as _missing_whitespace_after_keyword # noqa: E501  | 
26 |  | -from pycodestyle import missing_whitespace_around_operator as _missing_whitespace_around_operator # noqa: E501  | 
27 | 26 | from pycodestyle import module_imports_on_top_of_file as _module_imports_on_top_of_file # noqa: E501  | 
28 |  | -from pycodestyle import python_3000_async_await_keywords as _python_3000_async_await_keywords # noqa: E501  | 
29 | 27 | from pycodestyle import python_3000_invalid_escape_sequence as _python_3000_invalid_escape_sequence # noqa: E501  | 
30 | 28 | from pycodestyle import tabs_obsolete as _tabs_obsolete  | 
31 | 29 | from pycodestyle import tabs_or_spaces as _tabs_or_spaces  | 
@@ -74,11 +72,9 @@ def pycodestyle_logical(  | 
74 | 72 |  yield from _imports_on_separate_lines(logical_line)  | 
75 | 73 |  yield from _indentation(logical_line, previous_logical, indent_char, indent_level, previous_indent_level, indent_size) # noqa: E501  | 
76 | 74 |  yield from _maximum_doc_length(logical_line, max_doc_length, noqa, tokens)  | 
77 |  | - yield from _missing_whitespace(logical_line)  | 
 | 75 | + yield from _missing_whitespace(logical_line, tokens)  | 
78 | 76 |  yield from _missing_whitespace_after_keyword(logical_line, tokens)  | 
79 |  | - yield from _missing_whitespace_around_operator(logical_line, tokens)  | 
80 | 77 |  yield from _module_imports_on_top_of_file(logical_line, indent_level, checker_state, noqa) # noqa: E501  | 
81 |  | - yield from _python_3000_async_await_keywords(logical_line, tokens)  | 
82 | 78 |  yield from _python_3000_invalid_escape_sequence(logical_line, tokens, noqa)  | 
83 | 79 |  yield from _whitespace_around_comma(logical_line)  | 
84 | 80 |  yield from _whitespace_around_keywords(logical_line)  | 
 | 
0 commit comments