Removed unused imports

This commit is contained in:
Profitroll 2023-02-16 14:58:27 +01:00
parent fa3aca30c2
commit 80897dd79c

View File

@ -10,9 +10,9 @@ from modules.security import User, get_current_active_user
from bson.objectid import ObjectId from bson.objectid import ObjectId
from bson.errors import InvalidId from bson.errors import InvalidId
from fastapi import HTTPException, Security from fastapi import Security
from fastapi.responses import UJSONResponse, Response from fastapi.responses import UJSONResponse, Response
from starlette.status import HTTP_204_NO_CONTENT, HTTP_404_NOT_FOUND, HTTP_406_NOT_ACCEPTABLE, HTTP_409_CONFLICT from starlette.status import HTTP_204_NO_CONTENT
album_create_responses = { album_create_responses = {
406: AlbumIncorrectError("name", "error").openapi, 406: AlbumIncorrectError("name", "error").openapi,