Skip to content

Commit

Permalink
Fixed 'missing_whitespace_around_operator' rename.
Browse files Browse the repository at this point in the history
  • Loading branch information
keriksson-rosenqvist committed Aug 4, 2023
1 parent 5b9110b commit 8422ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autopep8.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ def fix_e225(self, result):
if not check_syntax(fixed.lstrip()):
return
errors = list(
pycodestyle.missing_whitespace_around_operator(fixed, ts))
pycodestyle.missing_whitespace(fixed, ts))
for e in reversed(errors):
if error_code != e[1].split()[0]:
continue
Expand Down

0 comments on commit 8422ed4

Please sign in to comment.