From 40128fb5b69b54b53dbff84c2cb069fa5b77b635 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 6 Nov 2024 21:19:25 -0600 Subject: disable certain pylint warnings --- account.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'account.py') diff --git a/account.py b/account.py index 6ff1dfe..79fcc13 100644 --- a/account.py +++ b/account.py @@ -11,7 +11,8 @@ import database class Account: """Represents a login account.""" - def __init__(self, uuid: str, application: str, username: str, + def __init__(self, uuid: str, application: str, #pylint: disable=R0913,R0917 + username: str, #pylint: disable=R0913,R0917 password: str, url: str) -> None: #pylint: disable=R0913,R0917 self.uuid = uuid self.application = application -- cgit v1.2.3-70-g09d2