diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:19:25 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:19:25 -0600 |
commit | 40128fb5b69b54b53dbff84c2cb069fa5b77b635 (patch) | |
tree | 510caa1be1a3280325da5e3b070fd755a437e3ff | |
parent | 7fbb76569f40d5cab6603f7747991655bee6f171 (diff) | |
download | yoshi-cli-40128fb5b69b54b53dbff84c2cb069fa5b77b635.tar.gz yoshi-cli-40128fb5b69b54b53dbff84c2cb069fa5b77b635.tar.bz2 yoshi-cli-40128fb5b69b54b53dbff84c2cb069fa5b77b635.zip |
disable certain pylint warnings
-rw-r--r-- | account.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |