From 5887e1eddd0eb3eb7fed517c72bb6671847c655c Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 2 Nov 2024 17:26:29 -0500 Subject: fix pylint errors --- Account.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Account.py') diff --git a/Account.py b/Account.py index 4e33518..8920b13 100644 --- a/Account.py +++ b/Account.py @@ -13,6 +13,7 @@ class Account: def __init__(self, uuid: str, application: str, username: str, password: str, url: str) -> None: + self.self = self self.uuid = uuid self.application = application self.username = username @@ -29,7 +30,7 @@ class Account: def save_account(self) -> None: """Save the account details to the database.""" - database.create_account( + database.add_account( self.uuid, self.application, self.username, self.password, self.url) def delete_account(self) -> bool: -- cgit v1.2.3-70-g09d2