Skip to content

Commit 3dd6d2c

Browse files
committed
fix: add type annotation for scores dict in extract_evaluator_scores
1 parent c84bb5a commit 3dd6d2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uipath/_cli/_evals/_span_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def extract_evaluator_scores(evaluation_run_results: Any) -> Dict[str, float]:
6565
Returns:
6666
Dictionary mapping evaluator IDs to their normalized scores (0-100)
6767
"""
68-
scores = {}
68+
scores: Dict[str, float] = {}
6969
if not evaluation_run_results.evaluation_run_results:
7070
return scores
7171

0 commit comments

Comments
 (0)