Skip to content

Commit a7bef32

Browse files
committed
missing imports
1 parent cee1293 commit a7bef32

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test_cases/stdlib/itertools/check_itertools_recipes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
from __future__ import annotations
77

88
import collections
9+
import functools
910
import math
1011
import operator
1112
import sys
12-
from itertools import chain, combinations, count, cycle, filterfalse, groupby, islice, repeat, starmap, tee, zip_longest
13-
from typing import Any, Callable, Hashable, Iterable, Iterator, Sequence, Tuple, Type, TypeVar, Union, overload
13+
from itertools import chain, combinations, count, cycle, filterfalse, groupby, islice, product, repeat, starmap, tee, zip_longest
14+
from typing import Any, Callable, Collection, Hashable, Iterable, Iterator, Sequence, Sized, Tuple, Type, TypeVar, Union, overload
1415
from typing_extensions import Literal, TypeAlias, TypeVarTuple, Unpack
1516

1617
_T = TypeVar("_T")

0 commit comments

Comments
 (0)