diff options
Diffstat (limited to 'Account.py')
-rw-r--r-- | Account.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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: |