We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3cd548 commit c58bdb3Copy full SHA for c58bdb3
1 file changed
src/backend/v4/api/router.py
@@ -11,7 +11,6 @@
11
from v4.models.messages import WebsocketMessageType
12
from auth.auth_utils import get_authenticated_user_details
13
from common.database.database_factory import DatabaseFactory
14
-from common.utils.github_excel_generator import GitHubExcelGenerator
15
from v4.common.services.branch_report_service import BranchReportService
16
from common.models.messages_af import (
17
InputTask,
@@ -1517,7 +1516,6 @@ async def generate_branch_report(
1517
1516
# Create a background task to clean up the file after a delay
1518
async def cleanup_file():
1519
"""Delete the temporary file after a delay to ensure download completes."""
1520
- import asyncio
1521
await asyncio.sleep(300) # Wait 5 minutes before cleanup
1522
try:
1523
if os.path.exists(output_path):
0 commit comments