We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13c7916 commit 397ac23Copy full SHA for 397ac23
1 file changed
src/backend/api/api_routes.py
@@ -2,8 +2,9 @@
2
3
import asyncio
4
import io
5
-from typing import Optional
6
import zipfile
+from typing import Optional
7
+
8
9
from api.auth.auth_utils import get_authenticated_user
10
from api.status_updates import app_connection_manager, close_connection
@@ -801,7 +802,7 @@ async def delete_all_details(request: Request):
801
802
803
804
@router.get("/batch-history")
-async def list_batch_history(request: Request, offset: int = 0,limit: Optional[int] = None):
805
+async def list_batch_history(request: Request, offset: int = 0, limit: Optional[int] = None):
806
"""
807
Retrieve batch processing history for the authenticated user.
808
0 commit comments