diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:18:20 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:18:20 -0600 |
commit | 7fbb76569f40d5cab6603f7747991655bee6f171 (patch) | |
tree | 2a0962407768cd2b9657e28390c7d4b695fa7f11 | |
parent | 51da30891ecb75b2f565ee02b1b3648adaa0f931 (diff) | |
download | yoshi-cli-7fbb76569f40d5cab6603f7747991655bee6f171.tar.gz yoshi-cli-7fbb76569f40d5cab6603f7747991655bee6f171.tar.bz2 yoshi-cli-7fbb76569f40d5cab6603f7747991655bee6f171.zip |
disable certain pylint warnings
-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 |