diff -r 68b03f6ebed5 -r ee35df230130 eric6/DebugClients/Python/DebugVariables.py --- a/eric6/DebugClients/Python/DebugVariables.py Tue May 12 17:22:50 2020 +0200 +++ b/eric6/DebugClients/Python/DebugVariables.py Tue May 12 17:32:16 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: