diff --git a/backend/apps/web/models/auths.py b/backend/apps/web/models/auths.py index 367db3ff7..02d2ab861 100644 --- a/backend/apps/web/models/auths.py +++ b/backend/apps/web/models/auths.py @@ -5,12 +5,7 @@ import uuid from peewee import * from apps.web.models.users import UserModel, Users -from utils.utils import ( - verify_password, - get_password_hash, - bearer_scheme, - create_token, -) +from utils.utils import verify_password from apps.web.internal.db import DB diff --git a/backend/apps/web/routers/chats.py b/backend/apps/web/routers/chats.py index 292142290..d28300951 100644 --- a/backend/apps/web/routers/chats.py +++ b/backend/apps/web/routers/chats.py @@ -25,9 +25,6 @@ from apps.web.models.tags import ( Tags, ) -from utils.utils import ( - bearer_scheme, -) from constants import ERROR_MESSAGES router = APIRouter()