Skip to content

Commit 2342284

Browse files
committed
remote/exporter: remove no-self-use disable
This is no longer required since pylint has moved it to an optional extension, see [1]. [1]: https://pylint.readthedocs.io/en/latest/whatsnew/2/2.14/summary.html#removed-checkers.
1 parent 413aa59 commit 2342284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labgrid/remote/exporter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ def broken(self, reason):
9292
self.data["acquired"] = "<broken>"
9393
self.logger.error("marked as broken: %s", reason)
9494

95-
def _get_start_params(self): # pylint: disable=no-self-use
95+
def _get_start_params(self):
9696
return {}
9797

98-
def _get_params(self): # pylint: disable=no-self-use
98+
def _get_params(self):
9999
return {}
100100

101101
def _start(self, start_params):

0 commit comments

Comments
 (0)