src/eric7/DebugClients/Python/DebugClientBase.py

branch
eric7
changeset 10065
de4ae767b0e3
parent 10050
3750abc45d5e
child 10289
490388ca210c
diff -r 8c3207703dac -r de4ae767b0e3 src/eric7/DebugClients/Python/DebugClientBase.py
--- a/src/eric7/DebugClients/Python/DebugClientBase.py	Wed May 24 17:28:58 2023 +0200
+++ b/src/eric7/DebugClients/Python/DebugClientBase.py	Wed May 24 19:54:24 2023 +0200
@@ -1012,13 +1012,9 @@
             },
         )
 
-    def sendDebuggerId(self, debuggerId):
+    def sendDebuggerId(self):
         """
         Public method to send the debug client id.
-
-        @param debuggerId id of this debug client instance (made up of
-            hostname and process ID)
-        @type str
         """
         # debugger ID is added automatically by sendJsonCommand
         self.sendJsonCommand("DebuggerId", {})
@@ -1216,7 +1212,7 @@
             socket.gethostname(), os.getpid(), name
         )
 
-        self.sendDebuggerId(self.__debuggerId)
+        self.sendDebuggerId()
 
     def __unhandled_exception(self, exctype, excval, exctb):
         """
@@ -1767,11 +1763,11 @@
         host=None,
         port=None,
         enableTrace=True,
-        exceptions=True,
+        exceptions=True,  # noqa: U100
         tracePython=False,
         redirect=True,
         passive=True,
-        multiprocessSupport=False,
+        multiprocessSupport=False,  # noqa: U100
     ):
         """
         Public method used to start the remote debugger.

eric ide

mercurial