Skip to content

Commit

Permalink
Remove disable comment for no-self-use.
Browse files Browse the repository at this point in the history
  • Loading branch information
denpamusic committed Jun 1, 2022
1 parent 7c174a3 commit 0f8b1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyplumio/frames/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def parse_message(self, message: bytearray) -> None:
class Request(Frame):
"""Base class for all requests frames."""

def response(self, **args) -> Optional[Frame]: # pylint: disable=no-self-use
def response(self, **args) -> Optional[Frame]:
"""Returns instance of Frame
for response to request, if needed.
Expand Down

0 comments on commit 0f8b1a0

Please sign in to comment.