aboutsummaryrefslogtreecommitdiff
path: root/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'account.py')
-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