eric6/DebugClients/Python/DebugVariables.py

branch
multi_processing
changeset 7627
812ee8c0a91a
parent 7594
ee35df230130
child 7628
f904d0eef264
diff -r e8688eb98b98 -r 812ee8c0a91a eric6/DebugClients/Python/DebugVariables.py
--- a/eric6/DebugClients/Python/DebugVariables.py	Sun May 03 13:42:52 2020 +0200
+++ b/eric6/DebugClients/Python/DebugVariables.py	Wed Jun 17 17:14:12 2020 +0200
@@ -704,8 +704,10 @@
     typeStr = str(typeObject).split(' ', 1)[-1]
     typeStr = typeStr[1:-2]
     
-    if (typeStr.startswith(ConfigQtNames) and
-            typeStr.endswith(ConfigKnownQtTypes)):
+    if (
+        typeStr.startswith(ConfigQtNames) and
+        typeStr.endswith(ConfigKnownQtTypes)
+    ):
         resolver = None
     else:
         if _TypeMap is None:

eric ide

mercurial