From 106adcd27b1f3e154bf8fe5769385fffc8108f5e Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 18 Nov 2023 13:41:58 +0900 Subject: [PATCH] Fix type hint for tuple of strings --- update.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/update.py b/update.py index 8a28e43..431db26 100755 --- 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