diff -r b0d14cba79b1 -r 552a790fd9bc src/eric7/RemoteServerInterface/EricServerInterface.py --- a/src/eric7/RemoteServerInterface/EricServerInterface.py Tue Feb 27 15:05:53 2024 +0100 +++ b/src/eric7/RemoteServerInterface/EricServerInterface.py Fri Mar 08 15:30:23 2024 +0100 @@ -111,7 +111,7 @@ try: return self.__serviceInterfaces[lname] except KeyError: - if lname not in ("coverage", "debugger", "filesystem", "project"): + if lname not in ("coverage", "debugger", "filesystem"): raise ValueError(f"no such service supported ({name})") else: # instantiate the service interface @@ -135,9 +135,6 @@ ) self.__serviceInterfaces[lname] = EricServerCoverageInterface(self) - elif lname == "project": - # TODO: 'Project Interface' not implemented yet - pass return self.__serviceInterfaces[lname]