chore: Replace python-jose with PyJWT (#3521)

Co-authored-by: boc-the-git <3479092+boc-the-git@users.noreply.github.com>
This commit is contained in:
Michael Genson
2024-04-29 04:49:13 -05:00
committed by GitHub
parent ab8c3be367
commit 786aa2279c
5 changed files with 30 additions and 65 deletions

View File

@@ -2,7 +2,7 @@ import abc
from datetime import datetime, timedelta, timezone
from typing import Generic, TypeVar
from jose import jwt
import jwt
from sqlalchemy.orm.session import Session
from mealie.core.config import get_app_settings

View File

@@ -2,8 +2,8 @@ import secrets
from datetime import datetime, timedelta, timezone
from pathlib import Path
import jwt
from fastapi import Request
from jose import jwt
from sqlalchemy.orm.session import Session
from mealie.core import root_logger