summaryrefslogtreecommitdiff
path: root/account.py
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-11-06 21:18:20 -0600
committerChristian Cleberg <hello@cleberg.net>2024-11-06 21:18:20 -0600
commit7fbb76569f40d5cab6603f7747991655bee6f171 (patch)
tree2a0962407768cd2b9657e28390c7d4b695fa7f11 /account.py
parent51da30891ecb75b2f565ee02b1b3648adaa0f931 (diff)
downloadyoshi-cli-7fbb76569f40d5cab6603f7747991655bee6f171.tar.gz
yoshi-cli-7fbb76569f40d5cab6603f7747991655bee6f171.tar.bz2
yoshi-cli-7fbb76569f40d5cab6603f7747991655bee6f171.zip
disable certain pylint warnings
Diffstat (limited to 'account.py')
-rw-r--r--account.py2
1 files changed, 1 insertions, 1 deletions
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