Skip to content

Commit b01e316

Browse files
committed
fix: 🐛 missing import
1 parent a11022c commit b01e316

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/api/routes/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from app.core.config import OLLAMA_HOST, OLLAMA_MODEL, WHISPER_HOST, BASE_DIR, RETENTION_PERIOD_DAYS
1515
from app.core.errors.base import AppError
1616
from app.db.repositories import create_form, get_template, get_form_submission, delete_form_submission
17-
from app.models import FormSubmission
17+
from app.models import FormSubmission, Template
1818
from app.services.controller import Controller
1919

2020
PROJECT_ROOT = BASE_DIR

0 commit comments

Comments
 (0)