diff options
author | John Nduli | 2024-08-14 11:38:17 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-08-14 11:58:28 +0300 |
commit | 60a1d17cc5d4a3d511deade2daa90be4973273a0 (patch) | |
tree | 5164f0dde01ed00c3737c4a9e5d34d81a142ff68 /gn_auth | |
parent | 812d140c6b5a54f48e4f2af956257246a3837962 (diff) | |
download | gn-auth-60a1d17cc5d4a3d511deade2daa90be4973273a0.tar.gz |
fix: import timedelta in jwks
Diffstat (limited to 'gn_auth')
-rw-r--r-- | gn_auth/auth/jwks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/jwks.py b/gn_auth/auth/jwks.py index 810a162..7381000 100644 --- a/gn_auth/auth/jwks.py +++ b/gn_auth/auth/jwks.py @@ -2,7 +2,7 @@ import os from pathlib import Path from typing import Any, Union -from datetime import datetime +from datetime import datetime, timedelta from flask import Flask from authlib.jose import JsonWebKey |