Skip to content

Commit 3f13ddf

Browse files
committed
resource/udev: 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 2342284 commit 3f13ddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labgrid/resource/udev.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __attrs_post_init__(self):
6060
self.match.setdefault('SUBSYSTEM', 'usb')
6161
super().__attrs_post_init__()
6262

63-
def filter_match(self, device): # pylint: disable=unused-argument,no-self-use
63+
def filter_match(self, device): # pylint: disable=unused-argument
6464
return True
6565

6666
def suggest_match(self, device):

0 commit comments

Comments
 (0)