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.
2 parents ef0ce53 + 8c4fdfd commit eccc726Copy full SHA for eccc726
src/harmonizer/main.py
@@ -28,7 +28,7 @@
28
import json
29
import os
30
import sys
31
-from typing import Dict, List
+from typing import Dict, List, Tuple
32
33
# --- COMPONENT IMPORTS ---
34
# This script assumes the following two files are in the
@@ -472,7 +472,7 @@ def validate_cli_arguments(args: argparse.Namespace) -> List[str]:
472
473
def execute_analysis(
474
harmonizer: PythonCodeHarmonizer, file_paths: List[str], output_format: str
475
-) -> tuple[Dict[str, Dict[str, Dict]], int]:
+) -> Tuple[Dict[str, Dict[str, Dict]], int]:
476
"""
477
Executes the analysis pipeline.
478
Pure Power domain: orchestrating the actual work.
0 commit comments