diff --git a/files/classes/user.py b/files/classes/user.py index 8ed7ac928..73bfafea0 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -146,10 +146,10 @@ class LoggedOutUser(): return False def pay_account(self, currency, amount) -> NoReturn: - raise NotImplementedError() + raise TypeError("Can't pay a logged out user!") - def charge_account(self, currency, amount, **kwargs) -> NoReturn: - raise NotImplementedError() + def charge_account(self, currency, amount, **kwargs) -> bool: + return False @property @lazy