From 042f68b5c1c3d23f9d979003ec768f8e293beb28 Mon Sep 17 00:00:00 2001 From: Patrick Woo-Sam Date: Sat, 10 Dec 2016 18:56:24 -0800 Subject: [PATCH] PEP8 --- spyder/widgets/sourcecode/codeeditor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spyder/widgets/sourcecode/codeeditor.py b/spyder/widgets/sourcecode/codeeditor.py index 3b4b3dd6d74..b52667ac263 100644 --- a/spyder/widgets/sourcecode/codeeditor.py +++ b/spyder/widgets/sourcecode/codeeditor.py @@ -1923,9 +1923,9 @@ def fix_indent(self, forward=True, comment_or_string=False): if prevtext: - if (prevtext.strip().endswith(')') - or prevtext.strip().endswith(']') - or prevtext.strip().endswith('}')): + if (prevtext.strip().endswith(')') or \ + prevtext.strip().endswith(']') or \ + prevtext.strip().endswith('}')): comment_or_string = True # prevent further parsing