src/eric7/RemoteServer/EricServer.py

branch
server
changeset 10633
dda7e43934dc
parent 10630
552a790fd9bc
child 10719
34901362f648
--- a/src/eric7/RemoteServer/EricServer.py	Fri Mar 08 15:51:14 2024 +0100
+++ b/src/eric7/RemoteServer/EricServer.py	Fri Mar 08 16:08:43 2024 +0100
@@ -202,7 +202,7 @@
             return {}
 
         jsonStr = data.decode("utf8", "backslashreplace")
-        print("Eric Server Receive:", jsonStr)  # for debugging
+        print("Eric Server Receive:", jsonStr)  # for debugging  # noqa: M801
         try:
             return json.loads(jsonStr.strip())
         except (TypeError, ValueError) as err:
@@ -324,7 +324,6 @@
             print(f"'eric-ide' connection from {address[0]}, port {address[1]}")
             # noqa: M801
             self.__connection = connection
-            ##self.__connection.setblocking(False)
             data = types.SimpleNamespace(
                 name="eric-ide", address=address, handler=self.__serviceIdeConnection
             )

eric ide

mercurial