Fix type hint for tuple of strings

This commit is contained in:
Stephen Seo 2023-11-18 13:41:58 +09:00
parent 6fde09ea71
commit 106adcd27b
1 changed files with 3 additions and 1 deletions

View File

@ -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