diff options
-rw-r--r-- | account.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ class Account: """Represents a login account.""" def __init__(self, uuid: str, application: str, username: str, - password: str, url: str) -> None: #pylint: R0913,R0917 + password: str, url: str) -> None: #pylint: disable=R0913,R0917 self.uuid = uuid self.application = application self.username = username |