Skip to content

Commit

Permalink
Fix type hint for value_chain args
Browse files Browse the repository at this point in the history
Fixes #518
  • Loading branch information
vr2262 committed May 19, 2021
1 parent e899af2 commit 8af65c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion more_itertools/more.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def nth_product(index: int, *args: Iterable[_T]) -> Tuple[_T, ...]: ...
def nth_permutation(
iterable: Iterable[_T], r: int, index: int
) -> Tuple[_T, ...]: ...
def value_chain(*args: Iterable[Any]) -> Iterable[Any]: ...
def value_chain(*args: Union[_T, Iterable[_T]]) -> Iterable[_T]: ...
def product_index(element: Iterable[_T], *args: Iterable[_T]) -> int: ...
def combination_index(
element: Iterable[_T], iterable: Iterable[_T]
Expand Down

0 comments on commit 8af65c8

Please sign in to comment.