From a361235028aa52a9f589f69469924d2addb001f2 Mon Sep 17 00:00:00 2001 From: Adrian Wix Date: Sat, 29 Jul 2023 20:16:32 +0200 Subject: [PATCH] fix: renamed wrong function invocation --- autopep8.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autopep8.py b/autopep8.py index 5e2a9fda..0ab760ea 100755 --- a/autopep8.py +++ b/autopep8.py @@ -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