Skip to content

Commit

Permalink
fix: use util
Browse files Browse the repository at this point in the history
  • Loading branch information
sverben authored Apr 17, 2024
1 parent ddc537a commit 55ec33d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@
from fastapi.exceptions import HTTPException
from fastapi.middleware.cors import CORSMiddleware
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from fastapi_utils.tasks import repeat_every
from sqlalchemy.orm import Session

from app.conf import settings
from app.db import models, schemas, crud
from app.db.database import get_db, engine
from app.db.schemas import User
from app.utils import process_smoelen, obtain_images, handle_unprocessed
from app.utils import process_smoelen, obtain_images, handle_unprocessed, repeat_every


@lru_cache()
Expand Down

0 comments on commit 55ec33d

Please sign in to comment.