Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/harmonizer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import json
import os
import sys
from typing import Dict, List
from typing import Dict, List, Tuple

# --- COMPONENT IMPORTS ---
# This script assumes the following two files are in the
Expand Down Expand Up @@ -472,7 +472,7 @@ def validate_cli_arguments(args: argparse.Namespace) -> List[str]:

def execute_analysis(
harmonizer: PythonCodeHarmonizer, file_paths: List[str], output_format: str
) -> tuple[Dict[str, Dict[str, Dict]], int]:
) -> Tuple[Dict[str, Dict[str, Dict]], int]:
"""
Executes the analysis pipeline.
Pure Power domain: orchestrating the actual work.
Expand Down