From 4dc22353a894b1ef6d9e841d218504fcbb59458f Mon Sep 17 00:00:00 2001 From: Shinya Ohyanagi Date: Tue, 2 Aug 2022 23:23:14 +0900 Subject: [PATCH] Fix Flake8 E275 error --- autopep8.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autopep8.py b/autopep8.py index b4406c74..6956203f 100755 --- a/autopep8.py +++ b/autopep8.py @@ -3696,7 +3696,7 @@ def apply_global_fixes(source, options, where='global', filename='', for code in ['E101', 'E111']): source = reindent(source, indent_size=options.indent_size, - leave_tabs=not( + leave_tabs=not ( code_match( 'W191', select=options.select,