summaryrefslogtreecommitdiffstats
path: root/accounts/backend/user/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/backend/user/__init__.py')
-rw-r--r--accounts/backend/user/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/backend/user/__init__.py b/accounts/backend/user/__init__.py
index 1504e41..70f973a 100644
--- a/accounts/backend/user/__init__.py
+++ b/accounts/backend/user/__init__.py
@@ -135,13 +135,13 @@ class Backend(object):
"""
raise NotImplementedError()
- def _store(self, account):
+ def _store(self, account: Account) -> None:
"""
Persists an account in the backend.
"""
raise NotImplementedError()
- def _get_next_uidNumber(self):
+ def _get_next_uidNumber(self) -> int:
"""
Get the next free uid number.