summaryrefslogtreecommitdiff
path: root/account.py
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-11-06 21:17:08 -0600
committerChristian Cleberg <hello@cleberg.net>2024-11-06 21:17:08 -0600
commit51da30891ecb75b2f565ee02b1b3648adaa0f931 (patch)
treea4396f5697b2e63110ceb991be53fc1ca1959cde /account.py
parent00eaf465f1f4bb3b90285f145b21f6e2f3e4d8ca (diff)
downloadyoshi-cli-51da30891ecb75b2f565ee02b1b3648adaa0f931.tar.gz
yoshi-cli-51da30891ecb75b2f565ee02b1b3648adaa0f931.tar.bz2
yoshi-cli-51da30891ecb75b2f565ee02b1b3648adaa0f931.zip
add docstrings, fix imports, and disable certain pylint warnings
Diffstat (limited to 'account.py')
-rw-r--r--account.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/account.py b/account.py
index 8920b13..ce5de84 100644
--- a/account.py
+++ b/account.py
@@ -12,8 +12,7 @@ class Account:
"""Represents a login account."""
def __init__(self, uuid: str, application: str, username: str,
- password: str, url: str) -> None:
- self.self = self
+ password: str, url: str) -> None: #pylint: R0913,R0917
self.uuid = uuid
self.application = application
self.username = username