diff -r 5494faeaead2 -r 38514063ecee src/eric7/DebugClients/Python/DebugClientBase.py --- a/src/eric7/DebugClients/Python/DebugClientBase.py Wed Oct 12 19:44:29 2022 +0200 +++ b/src/eric7/DebugClients/Python/DebugClientBase.py Wed Oct 12 19:54:22 2022 +0200 @@ -1448,7 +1448,9 @@ idx, varDict = next(varGen) if idx != -2: # more elements available var.insert(0, idx) - varlist = self.__formatVariablesList(varDict, scope, filterList, var[1:]) + varlist = self.__formatVariablesList( + varDict, scope, filterList, var[1:] + ) elif scope != -1: variable = varDict # Lookup the wanted attribute @@ -1670,7 +1672,7 @@ showFlag = True if filterString: filterList = filterString.split(";") - pattern="|".join(f.strip() for f in filterList) + pattern="|".join(f.strip() for f in filterList) # __IGNORE_WARNING__ with contextlib.suppress(re.error): patternFilterObjects = re.compile(pattern) else: