fix: resolve linting issues across multiple files

- Remove unused imports (os, Optional, json, List, sys, MagicMock, DebugIssueTool)
- Remove unused variable assignments (safe_file_name)
- Fix f-strings without placeholders
- Reorder imports in test_live_integration.py
This commit is contained in:
Fahad
2025-06-09 13:53:37 +04:00
parent a5da02c73f
commit e3e6f12cf3
5 changed files with 7 additions and 13 deletions

View File

@@ -18,10 +18,10 @@ from pathlib import Path
# Add parent directory to path to allow imports
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import json
from tools.analyze import AnalyzeTool
from tools.think_deeper import ThinkDeeperTool
from tools.debug_issue import DebugIssueTool
import json
async def run_manual_live_tests():

View File

@@ -3,7 +3,7 @@ Tests for the review_pending_changes tool
"""
import json
from unittest.mock import MagicMock, Mock, patch
from unittest.mock import Mock, patch
import pytest