src/eric7/Debugger/DebugUI.py

branch
eric7
changeset 10683
779cda568acb
parent 10540
7631c0ba2877
child 10689
3ede487187f2
diff -r 47be220abdaf -r 779cda568acb src/eric7/Debugger/DebugUI.py
--- a/src/eric7/Debugger/DebugUI.py	Tue Apr 16 15:47:11 2024 +0200
+++ b/src/eric7/Debugger/DebugUI.py	Sat Apr 20 18:01:36 2024 +0200
@@ -1278,7 +1278,7 @@
         """
         self.__clientDebuggerIds.add(debuggerId)
 
-    def __clientLine(self, fn, line, debuggerId, threadName, forStack):  # noqa: U100
+    def __clientLine(self, fn, line, debuggerId, _threadName, forStack):
         """
         Private method to handle a change to the current line.
 
@@ -1288,7 +1288,7 @@
         @type int
         @param debuggerId ID of the debugger backend
         @type str
-        @param threadName name of the thread signaling the event
+        @param _threadName name of the thread signaling the event (unused)
         @type str
         @param forStack flag indicating this is for a stack dump
         @type bool
@@ -1545,7 +1545,7 @@
             self.__continue(debuggerId)
 
     def __clientSignal(
-        self, message, filename, lineNo, funcName, funcArgs, debuggerId  # noqa: U100
+        self, message, filename, lineNo, _funcName, _funcArgs, _debuggerId
     ):
         """
         Private method to handle a signal generated on the client side.
@@ -1556,11 +1556,11 @@
         @type str
         @param lineNo line number of the syntax error position
         @type int
-        @param funcName name of the function causing the signal
+        @param _funcName name of the function causing the signal (unused)
         @type str
-        @param funcArgs function arguments
+        @param _funcArgs function arguments (unused)
         @type str
-        @param debuggerId ID of the debugger backend
+        @param _debuggerId ID of the debugger backend (unused)
         @type str
         """
         self.ui.raise_()
@@ -1681,7 +1681,7 @@
         """
         self.debugServer.remoteClientDisassembly(debuggerId)
 
-    def __clientBreakConditionError(self, filename, lineno, debuggerId):  # noqa: U100
+    def __clientBreakConditionError(self, filename, lineno, _debuggerId):
         """
         Private method to handle a condition error of a breakpoint.
 
@@ -1689,7 +1689,7 @@
         @type str
         @param lineno line umber of the breakpoint
         @type int
-        @param debuggerId ID of the debugger backend
+        @param _debuggerId ID of the debugger backend (unused)
         @type str
         """
         from .EditBreakpointDialog import EditBreakpointDialog
@@ -1739,7 +1739,7 @@
                 )
                 Preferences.Prefs.rsettings.sync()
 
-    def __clientWatchConditionError(self, cond, debuggerId):  # noqa: U100
+    def __clientWatchConditionError(self, cond, _debuggerId):
         """
         Private method to handle a expression error of a watch expression.
 
@@ -1747,7 +1747,7 @@
 
         @param cond expression of the watch expression
         @type str
-        @param debuggerId ID of the debugger backend
+        @param _debuggerId ID of the debugger backend (unused)
         @type str
         """
         from .EditWatchpointDialog import EditWatchpointDialog

eric ide

mercurial