Skip to content

Commit

Permalink
resource/udev: remove no-self-use disable
Browse files Browse the repository at this point in the history
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.

Signed-off-by: Rouven Czerwinski <[email protected]>
  • Loading branch information
Emantor authored and Bastian-Krause committed Oct 8, 2024
1 parent bcd9e2b commit 978d421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labgrid/resource/udev.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __attrs_post_init__(self):
self.match.setdefault('SUBSYSTEM', 'usb')
super().__attrs_post_init__()

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

def suggest_match(self, device):
Expand Down

0 comments on commit 978d421

Please sign in to comment.