chore: Remove useless PyLint suppressions

This commit is contained in:
2023-11-18 07:12:26 +01:00
parent d6881cd8d5
commit 526117ae18
3 changed files with 4 additions and 4 deletions

View File

@@ -180,7 +180,7 @@ class Message:
class LocalMessage(Message):
"""Class representing a local message"""
def __init__( # pylint: disable=too-many-arguments,super-init-not-called
def __init__( # pylint: disable=too-many-arguments
self,
feed: LocalFeed,
content: Dict[str, Any],

View File

@@ -38,7 +38,7 @@ class MuxRPCAPIException(Exception):
"""Exception to raise on MuxRPC API errors"""
class MuxRPCHandler: # pylint: disable=too-few-public-methods
class MuxRPCHandler:
"""Base MuxRPC handler class"""
def check_message(self, msg: PSMessage) -> None: