From 8422ed4b60c096dae46431f4bc96d06268982448 Mon Sep 17 00:00:00 2001 From: Kajsa Eriksson Rosenqvist Date: Fri, 4 Aug 2023 11:26:34 +0100 Subject: [PATCH] Fixed 'missing_whitespace_around_operator' rename. --- 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