summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-11-06 21:19:25 -0600
committerChristian Cleberg <hello@cleberg.net>2024-11-06 21:19:25 -0600
commit40128fb5b69b54b53dbff84c2cb069fa5b77b635 (patch)
tree510caa1be1a3280325da5e3b070fd755a437e3ff
parent7fbb76569f40d5cab6603f7747991655bee6f171 (diff)
downloadyoshi-cli-40128fb5b69b54b53dbff84c2cb069fa5b77b635.tar.gz
yoshi-cli-40128fb5b69b54b53dbff84c2cb069fa5b77b635.tar.bz2
yoshi-cli-40128fb5b69b54b53dbff84c2cb069fa5b77b635.zip
disable certain pylint warnings
-rw-r--r--account.py3
1 files changed, 2 insertions, 1 deletions
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