eric6/DebugClients/Python/FlexCompleter.py

changeset 7250
d8bdc55aee1a
parent 6942
2602857055c5
child 7628
f904d0eef264
diff -r 0bf517e60f54 -r d8bdc55aee1a eric6/DebugClients/Python/FlexCompleter.py
--- a/eric6/DebugClients/Python/FlexCompleter.py	Thu Sep 19 19:39:04 2019 +0200
+++ b/eric6/DebugClients/Python/FlexCompleter.py	Sat Sep 21 13:03:17 2019 +0200
@@ -201,8 +201,8 @@
             noprefix = None
         while True:
             for word in words:
-                if word[:n] == attr and \
-                   not (noprefix and word[:n + 1] == noprefix):
+                if (word[:n] == attr and
+                        not (noprefix and word[:n + 1] == noprefix)):
                     match = "{0}.{1}".format(expr, word)
                     try:
                         val = getattr(thisobject, word)

eric ide

mercurial