Skip to content

Commit 397ac23

Browse files
pylint issue fix
1 parent 13c7916 commit 397ac23

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/backend/api/api_routes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
import asyncio
44
import io
5-
from typing import Optional
65
import zipfile
6+
from typing import Optional
7+
78

89
from api.auth.auth_utils import get_authenticated_user
910
from api.status_updates import app_connection_manager, close_connection
@@ -801,7 +802,7 @@ async def delete_all_details(request: Request):
801802

802803

803804
@router.get("/batch-history")
804-
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):
805806
"""
806807
Retrieve batch processing history for the authenticated user.
807808

0 commit comments

Comments
 (0)