aboutsummaryrefslogtreecommitdiff
path: root/gn3/auth/authentication/users.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-01-11 10:29:39 +0300
committerFrederick Muriuki Muriithi2023-01-11 10:29:39 +0300
commit1b28c4043b4e1199920bc848d752bcc154314842 (patch)
treee0b8c73b3784e7ff55233d2f1278d9a5fd29efaf /gn3/auth/authentication/users.py
parent93e20e7be957c0a4c8b08d2a5395f29109865c82 (diff)
downloadgenenetwork3-1b28c4043b4e1199920bc848d752bcc154314842.tar.gz
auth: Add missing import
Diffstat (limited to 'gn3/auth/authentication/users.py')
-rw-r--r--gn3/auth/authentication/users.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/auth/authentication/users.py b/gn3/auth/authentication/users.py
index 0cd5852..ee3b5c2 100644
--- a/gn3/auth/authentication/users.py
+++ b/gn3/auth/authentication/users.py
@@ -1,6 +1,6 @@
"""User-specific code and data structures."""
from uuid import UUID, uuid4
-from typing import NamedTuple
+from typing import Tuple, NamedTuple
import bcrypt
from pymonad.maybe import Just, Maybe, Nothing