src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py

branch
server
changeset 10704
27d21e5163b8
parent 10632
1109854f15f9
parent 10690
fab36645aa7d
child 10759
aeb98b3fa008
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py	Wed Apr 10 17:03:56 2024 +0200
+++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py	Wed May 15 10:45:50 2024 +0200
@@ -1563,13 +1563,13 @@
         self.__selectCodes(self.noFixIssuesEdit, [], True)
 
     @pyqtSlot(QTreeWidgetItem, int)
-    def on_resultList_itemActivated(self, item, column):
+    def on_resultList_itemActivated(self, item, _column):
         """
         Private slot to handle the activation of an item.
 
         @param item reference to the activated item
         @type QTreeWidgetItem
-        @param column column the item was activated in
+        @param _column column the item was activated in (unused)
         @type int
         """
         if (
@@ -2609,11 +2609,11 @@
         # Update UI with default values
         self.on_loadDefaultButton_clicked()
 
-    def closeEvent(self, evt):
+    def closeEvent(self, _evt):
         """
         Protected method to handle a close event.
 
-        @param evt reference to the close event
+        @param _evt reference to the close event (unused)
         @type QCloseEvent
         """
         self.on_cancelButton_clicked()

eric ide

mercurial