diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:17:08 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:17:08 -0600 |
commit | 51da30891ecb75b2f565ee02b1b3648adaa0f931 (patch) | |
tree | a4396f5697b2e63110ceb991be53fc1ca1959cde /account.py | |
parent | 00eaf465f1f4bb3b90285f145b21f6e2f3e4d8ca (diff) | |
download | yoshi-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.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |