diff options
author | Frederick Muriuki Muriithi | 2023-01-11 10:29:39 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-01-11 10:29:39 +0300 |
commit | 1b28c4043b4e1199920bc848d752bcc154314842 (patch) | |
tree | e0b8c73b3784e7ff55233d2f1278d9a5fd29efaf /gn3/auth | |
parent | 93e20e7be957c0a4c8b08d2a5395f29109865c82 (diff) | |
download | genenetwork3-1b28c4043b4e1199920bc848d752bcc154314842.tar.gz |
auth: Add missing import
Diffstat (limited to 'gn3/auth')
-rw-r--r-- | gn3/auth/authentication/users.py | 2 |
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 |