aboutsummaryrefslogtreecommitdiffstats
path: root/backend/authentication/user.py
diff options
context:
space:
mode:
authorGravatar decorator-factory <[email protected]>2020-12-15 08:13:37 +0300
committerGravatar decorator-factory <[email protected]>2020-12-15 08:13:37 +0300
commit947a30f7406b7d025cf2e5754b59389af4213718 (patch)
treec6236edb812db32f583ac0acc9099be33d1a0e2b /backend/authentication/user.py
parentAdd ks123 (GH ks129) to CODEOWNERS (diff)
fix various type annotation issues
Diffstat (limited to 'backend/authentication/user.py')
-rw-r--r--backend/authentication/user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/authentication/user.py b/backend/authentication/user.py
index afa243f..3bed0a1 100644
--- a/backend/authentication/user.py
+++ b/backend/authentication/user.py
@@ -7,7 +7,7 @@ from starlette.authentication import BaseUser
class User(BaseUser, ABC):
"""Starlette BaseUser implementation for JWT authentication."""
- def __init__(self, token: str, payload: t.Dict) -> None:
+ def __init__(self, token: str, payload: dict[str, t.Any]) -> None:
self.token = token
self.payload = payload