From 1c4d64fa53711da9e147141d7598e7df15add001 Mon Sep 17 00:00:00 2001 From: LordRatte Date: Thu, 3 Aug 2023 15:17:58 +0300 Subject: [PATCH] Fix incorrect method --- autopep8.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autopep8.py b/autopep8.py index 5e2a9fda..dff473d0 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.whitespace_around_operator(fixed)) for e in reversed(errors): if error_code != e[1].split()[0]: continue