Removed unused imports

This commit is contained in:
2023-02-16 14:56:28 +01:00
parent c353a4a4df
commit fa3aca30c2
4 changed files with 3 additions and 13 deletions

View File

@@ -1,8 +1,5 @@
from typing import Literal
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
from modules.utils import configGet
class AlbumNotFoundError(Exception):
def __init__(self, id: str):

View File

@@ -1,4 +1,4 @@
from typing import Dict, List, Literal, Union
from typing import List, Union
from pydantic import BaseModel
class Photo(BaseModel):