From 7fbb76569f40d5cab6603f7747991655bee6f171 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 6 Nov 2024 21:18:20 -0600 Subject: disable certain pylint warnings --- account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account.py b/account.py index ce5de84..6ff1dfe 100644 --- a/account.py +++ b/account.py @@ -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 -- cgit v1.2.3-70-g09d2