Skip to content

Commit

Permalink
cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsziere committed Sep 24, 2024
1 parent cc1c9d1 commit 5f4651f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=invalid-name
import uvicorn
import time
from fastapi import (
Expand Down Expand Up @@ -107,7 +108,7 @@ def add_submission(kobo_data):
)
if submission["status"] == "pending":
raise HTTPException(
status_code=400, detail=f"Submission is still being processed."
status_code=400, detail="Submission is still being processed."
)
return submission

Expand Down

0 comments on commit 5f4651f

Please sign in to comment.