--- a/src/eric7/Utilities/ClassBrowsers/rbclbr.py Wed Apr 10 17:03:56 2024 +0200 +++ b/src/eric7/Utilities/ClassBrowsers/rbclbr.py Wed May 15 10:45:50 2024 +0200 @@ -310,7 +310,7 @@ @type str @param searchPath path the file should be searched in @type list of str - @param isTypeFile flag indicating a file of this type + @param isTypeFile flag indicating a file of this type (unused) @type bool @return the resulting dictionary @rtype dict @@ -323,7 +323,9 @@ else: # search the path for the module fullpath = [] if searchPath is None else searchPath[:] - f, file, (suff, mode, sourceType) = ClassBrowsers.find_module(module, fullpath) + f, file, (_suff, _mode, sourceType) = ClassBrowsers.find_module( + module, fullpath + ) if f: f.close()