]> git.seodisparate.com - AnotherAURHelper/commitdiff
Fix type hint for tuple of strings
authorStephen Seo <seo.disparate@gmail.com>
Sat, 18 Nov 2023 04:41:58 +0000 (13:41 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Sat, 18 Nov 2023 04:41:58 +0000 (13:41 +0900)
update.py

index 8a28e435bb9b995aa1170b8627da44c7f8987396..431db26434b0f9462e95b7db5e7a657cee0d0854 100755 (executable)
--- a/update.py
+++ b/update.py
@@ -1652,7 +1652,9 @@ def print_state_info_and_get_update_list(
 
 
 def build_print_pkg_info(
-    pkgs: tuple[str], pkg_state: dict[str, Any], other_state: dict[str, Any]
+    pkgs: tuple[str, ...],
+    pkg_state: dict[str, Any],
+    other_state: dict[str, Any],
 ):
     """Prints the current "build" state of the given pkgs."""
     max_name_len = 1