ninja changes: Fix old Python version compatibility (#53)

This commit is contained in:
LagoLunatic 2025-04-25 13:23:52 -04:00 committed by GitHub
parent f67064940d
commit bb558596e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ FUNCTION_KEYS_TO_DIFF = [
"fuzzy_match_percent",
]
type Change = Tuple[str, str, float, float]
Change = Tuple[str, str, float, float]
def get_changes(changes_file: str) -> list[Change]: