From: Stephen Seo Date: Sat, 18 Nov 2023 04:41:58 +0000 (+0900) Subject: Fix type hint for tuple of strings X-Git-Url: https://git.seodisparate.com/stephenseo/css/base.css?a=commitdiff_plain;h=106adcd27b1f3e154bf8fe5769385fffc8108f5e;p=AnotherAURHelper Fix type hint for tuple of strings --- 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