Fix type hint for tuple of strings
This commit is contained in:
parent
6fde09ea71
commit
106adcd27b
1 changed files with 3 additions and 1 deletions
|
@ -1652,7 +1652,9 @@ def print_state_info_and_get_update_list(
|
||||||
|
|
||||||
|
|
||||||
def build_print_pkg_info(
|
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."""
|
"""Prints the current "build" state of the given pkgs."""
|
||||||
max_name_len = 1
|
max_name_len = 1
|
||||||
|
|
Loading…
Reference in a new issue