--- a/src/eric7/DebugClients/Python/ModuleLoader.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/DebugClients/Python/ModuleLoader.py Sat Apr 20 18:01:36 2024 +0200 @@ -100,16 +100,16 @@ return module - def find_spec(self, fullname, path, target=None): # noqa: U100 + def find_spec(self, fullname, _path, target=None): # noqa: U100 """ Public method returning the module spec. @param fullname name of the module to be loaded @type str - @param path path to resolve the module name + @param _path path to resolve the module name (unused) @type str @param target module object to use for a more educated guess - about what spec to return + about what spec to return (unused) @type module @return module spec object pointing to the module loader @rtype ModuleSpec