We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7adfc commit 20346e1Copy full SHA for 20346e1
1 file changed
pep8.py
@@ -691,10 +691,7 @@ def missing_whitespace_around_operator(logical_line, tokens):
691
binary_usage = (prev_type not in SKIP_TOKENS)
692
693
if binary_usage:
694
- if text in WS_OPTIONAL_OPERATORS:
695
- need_space = None
696
- else:
697
- need_space = True
+ need_space = None
698
elif text in WS_OPTIONAL_OPERATORS:
699
need_space = None
700
0 commit comments