From 168b10e4edb97792d67ebd27a42d2845b73f6b14 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Fri, 25 Apr 2025 13:15:13 -0400 Subject: [PATCH] ninja changes: Fix old Python version compatibility --- tools/changes_fmt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/changes_fmt.py b/tools/changes_fmt.py index 49b997d3f..1004b6554 100755 --- a/tools/changes_fmt.py +++ b/tools/changes_fmt.py @@ -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]: