src/eric7/Testing/Interfaces/PytestExecutor.py

branch
eric7-maintenance
changeset 10694
f46c1e224e8a
parent 10460
3b34efa2857c
parent 10683
779cda568acb
child 10941
07cad049002c
--- a/src/eric7/Testing/Interfaces/PytestExecutor.py	Tue Apr 02 10:13:41 2024 +0200
+++ b/src/eric7/Testing/Interfaces/PytestExecutor.py	Wed Apr 24 10:14:16 2024 +0200
@@ -86,24 +86,24 @@
 
         return False
 
-    def supportsPatterns(self, interpreter):  # noqa: U100
+    def supportsPatterns(self, _interpreter):
         """
         Public method to indicate the support for test filtering using test name
         patterns or a test name pattern expression.
 
-        @param interpreter interpreter to be used for the test
+        @param _interpreter interpreter to be used for the test (unused)
         @type str
         @return flag indicating support of markers
         @rtype bool
         """
         return True
 
-    def supportsMarkers(self, interpreter):  # noqa: U100
+    def supportsMarkers(self, _interpreter):
         """
         Public method to indicate the support for test filtering using markers and/or
         marker expressions.
 
-        @param interpreter interpreter to be used for the test
+        @param _interpreter interpreter to be used for the test (unused)
         @type str
         @return flag indicating support of markers
         @rtype bool

eric ide

mercurial