Skip to content

Commit

Permalink
refactor(entrypoint): change import for BackgroundTasks
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasanchez committed Nov 1, 2023
1 parent 98a4d81 commit 42166b1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/heimdallr/entrypoint/v1/assignments.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@
import logging
from typing import Annotated

from fastapi import APIRouter, File, HTTPException, Path, UploadFile, status
from fastapi import (
APIRouter,
BackgroundTasks,
File,
HTTPException,
Path,
UploadFile,
status,
)
from pydantic import UUID4
from starlette.background import BackgroundTasks

from heimdallr.dependencies import (
AssignmentRepositoryDependency,
Expand Down

0 comments on commit 42166b1

Please sign in to comment.