src/eric7/Utilities/ClassBrowsers/rbclbr.py

branch
server
changeset 10704
27d21e5163b8
parent 10680
306373ccf8fd
parent 10692
9becf9ca115c
child 11090
f5f5f5803935
diff -r 306373ccf8fd -r 27d21e5163b8 src/eric7/Utilities/ClassBrowsers/rbclbr.py
--- 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()
 

eric ide

mercurial