Skip to content

Commit b569c18

Browse files
committed
add import
1 parent 787454c commit b569c18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/progress_check/check_finsearchcomp_progress.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import re
2222
import sys
2323
from pathlib import Path
24-
from typing import Dict, List, Tuple
24+
from typing import Dict, List, Tuple, Any
2525

2626

2727
def extract_task_type(task_id: str) -> str:
@@ -61,7 +61,7 @@ def extract_region_from_label(label: str) -> str:
6161
return "Unknown"
6262

6363

64-
def analyze_finsearchcomp_results(log_folder: str) -> Dict[str, any]:
64+
def analyze_finsearchcomp_results(log_folder: str) -> Dict[str, Any]:
6565
"""
6666
Analyze FinSearchComp benchmark results from JSON log files.
6767
@@ -192,7 +192,7 @@ def analyze_finsearchcomp_results(log_folder: str) -> Dict[str, any]:
192192

193193

194194
def display_results(
195-
results: Dict[str, any],
195+
results: Dict[str, Any],
196196
correct_files: List[str],
197197
incorrect_files: List[Tuple[str, str]],
198198
error_files: List[Tuple[str, str]],

0 commit comments

Comments
 (0)