src/eric7/RemoteServerInterface/EricServerInterface.py

branch
server
changeset 10630
552a790fd9bc
parent 10597
fbe93720ee9f
child 10723
88bec462b855
--- 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]
 

eric ide

mercurial