Skip to content

Commit afd2971

Browse files
committed
More typing fixes.
1 parent 0dda21b commit afd2971

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
lines changed

iters/async_iters.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ def create_zip(
569569

570570
@overload
571571
@classmethod
572-
def create_zip( # type: ignore
572+
def create_zip(
573573
cls,
574574
__iterable_a: AnyIterable[Any],
575575
__iterable_b: AnyIterable[Any],
@@ -683,7 +683,7 @@ def create_zip_equal(
683683

684684
@overload
685685
@classmethod
686-
def create_zip_equal( # type: ignore
686+
def create_zip_equal(
687687
cls,
688688
__iterable_a: AnyIterable[Any],
689689
__iterable_b: AnyIterable[Any],
@@ -818,7 +818,7 @@ def create_zip_longest(
818818

819819
@overload
820820
@classmethod
821-
def create_zip_longest( # type: ignore
821+
def create_zip_longest(
822822
cls,
823823
__iterable_a: AnyIterable[Any],
824824
__iterable_b: AnyIterable[Any],
@@ -934,7 +934,7 @@ def create_cartesian_product(
934934

935935
@overload
936936
@classmethod
937-
def create_cartesian_product( # type: ignore
937+
def create_cartesian_product(
938938
cls,
939939
__iterable_a: AnyIterable[Any],
940940
__iterable_b: AnyIterable[Any],
@@ -1934,7 +1934,7 @@ def apply_zip(
19341934
...
19351935

19361936
@overload
1937-
def apply_zip( # type: ignore
1937+
def apply_zip(
19381938
self,
19391939
__iterable_a: AnyIterable[Any],
19401940
__iterable_b: AnyIterable[Any],
@@ -2038,7 +2038,7 @@ def apply_zip_equal(
20382038
...
20392039

20402040
@overload
2041-
def apply_zip_equal( # type: ignore
2041+
def apply_zip_equal(
20422042
self,
20432043
__iterable_a: AnyIterable[Any],
20442044
__iterable_b: AnyIterable[Any],
@@ -2177,7 +2177,7 @@ def apply_zip_longest(
21772177
...
21782178

21792179
@overload
2180-
def apply_zip_longest( # type: ignore
2180+
def apply_zip_longest(
21812181
self,
21822182
__iterable_a: AnyIterable[Any],
21832183
__iterable_b: AnyIterable[Any],
@@ -2286,7 +2286,7 @@ def apply_cartesian_product(
22862286
...
22872287

22882288
@overload
2289-
def apply_cartesian_product( # type: ignore
2289+
def apply_cartesian_product(
22902290
self,
22912291
__iterable_a: AnyIterable[Any],
22922292
__iterable_b: AnyIterable[Any],

iters/async_utils.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3696,7 +3696,7 @@ def async_zip(
36963696

36973697

36983698
@overload
3699-
def async_zip( # type: ignore
3699+
def async_zip(
37003700
__iterable_a: AnyIterable[Any],
37013701
__iterable_b: AnyIterable[Any],
37023702
__iterable_c: AnyIterable[Any],
@@ -3833,7 +3833,7 @@ def async_zip_equal(
38333833

38343834

38353835
@overload
3836-
def async_zip_equal( # type: ignore
3836+
def async_zip_equal(
38373837
__iterable_a: AnyIterable[Any],
38383838
__iterable_b: AnyIterable[Any],
38393839
__iterable_c: AnyIterable[Any],
@@ -3972,7 +3972,7 @@ def async_zip_longest(
39723972

39733973

39743974
@overload
3975-
def async_zip_longest( # type: ignore
3975+
def async_zip_longest(
39763976
__iterable_a: AnyIterable[Any],
39773977
__iterable_b: AnyIterable[Any],
39783978
__iterable_c: AnyIterable[Any],
@@ -4101,7 +4101,7 @@ def async_zip_longest(
41014101

41024102

41034103
@overload
4104-
def async_zip_longest( # type: ignore
4104+
def async_zip_longest(
41054105
__iterable_a: AnyIterable[Any],
41064106
__iterable_b: AnyIterable[Any],
41074107
__iterable_c: AnyIterable[Any],
@@ -4508,7 +4508,7 @@ def standard_async_map(
45084508

45094509

45104510
@overload
4511-
def standard_async_map( # type: ignore
4511+
def standard_async_map(
45124512
function: DynamicCallable[R],
45134513
__iterable_t: AnyIterable[Any],
45144514
__iterable_u: AnyIterable[Any],
@@ -4565,7 +4565,7 @@ def standard_async_map_await(
45654565

45664566

45674567
@overload
4568-
def standard_async_map_await( # type: ignore
4568+
def standard_async_map_await(
45694569
function: DynamicAsyncCallable[R],
45704570
__iterable_t: AnyIterable[Any],
45714571
__iterable_u: AnyIterable[Any],
@@ -5022,7 +5022,7 @@ def async_cartesian_product(
50225022

50235023

50245024
@overload
5025-
def async_cartesian_product( # type: ignore
5025+
def async_cartesian_product(
50265026
__iterable_a: AnyIterable[Any],
50275027
__iterable_b: AnyIterable[Any],
50285028
__iterable_c: AnyIterable[Any],

iters/iters.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ def create_zip(
855855

856856
@overload
857857
@classmethod
858-
def create_zip( # type: ignore
858+
def create_zip(
859859
cls,
860860
__iterable_a: Iterable[Any],
861861
__iterable_b: Iterable[Any],
@@ -987,7 +987,7 @@ def create_zip_equal(
987987

988988
@overload
989989
@classmethod
990-
def create_zip_equal( # type: ignore
990+
def create_zip_equal(
991991
cls,
992992
__iterable_a: Iterable[Any],
993993
__iterable_b: Iterable[Any],
@@ -1132,7 +1132,7 @@ def create_zip_longest(
11321132

11331133
@overload
11341134
@classmethod
1135-
def create_zip_longest( # type: ignore
1135+
def create_zip_longest(
11361136
cls,
11371137
__iterable_a: Iterable[Any],
11381138
__iterable_b: Iterable[Any],
@@ -1273,7 +1273,7 @@ def create_cartesian_product(
12731273

12741274
@overload
12751275
@classmethod
1276-
def create_cartesian_product( # type: ignore
1276+
def create_cartesian_product(
12771277
cls,
12781278
__iterable_a: Iterable[Any],
12791279
__iterable_b: Iterable[Any],
@@ -2455,7 +2455,7 @@ def apply_zip(
24552455
...
24562456

24572457
@overload
2458-
def apply_zip( # type: ignore
2458+
def apply_zip(
24592459
self,
24602460
__iterable_a: Iterable[Any],
24612461
__iterable_b: Iterable[Any],
@@ -2556,7 +2556,7 @@ def apply_zip_equal(
25562556
...
25572557

25582558
@overload
2559-
def apply_zip_equal( # type: ignore
2559+
def apply_zip_equal(
25602560
self,
25612561
__iterable_a: Iterable[Any],
25622562
__iterable_b: Iterable[Any],
@@ -2680,7 +2680,7 @@ def apply_zip_longest(
26802680
...
26812681

26822682
@overload
2683-
def apply_zip_longest( # type: ignore
2683+
def apply_zip_longest(
26842684
self,
26852685
__iterable_a: Iterable[Any],
26862686
__iterable_b: Iterable[Any],
@@ -2784,7 +2784,7 @@ def apply_cartesian_product(
27842784
...
27852785

27862786
@overload
2787-
def apply_cartesian_product( # type: ignore
2787+
def apply_cartesian_product(
27882788
self,
27892789
__iterable_a: Iterable[Any],
27902790
__iterable_b: Iterable[Any],

iters/utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2275,7 +2275,7 @@ def zip(
22752275

22762276

22772277
@overload
2278-
def zip( # type: ignore
2278+
def zip(
22792279
__iterable_a: Iterable[Any],
22802280
__iterable_b: Iterable[Any],
22812281
__iterable_c: Iterable[Any],
@@ -2377,7 +2377,7 @@ def zip_equal(
23772377

23782378

23792379
@overload
2380-
def zip_equal( # type: ignore
2380+
def zip_equal(
23812381
__iterable_a: Iterable[Any],
23822382
__iterable_b: Iterable[Any],
23832383
__iterable_c: Iterable[Any],
@@ -2550,7 +2550,7 @@ def zip_longest(
25502550

25512551

25522552
@overload
2553-
def zip_longest( # type: ignore
2553+
def zip_longest(
25542554
__iterable_a: Iterable[Any],
25552555
__iterable_b: Iterable[Any],
25562556
__iterable_c: Iterable[Any],
@@ -2685,7 +2685,7 @@ def zip_longest(
26852685

26862686

26872687
@overload
2688-
def zip_longest( # type: ignore
2688+
def zip_longest(
26892689
__iterable_a: Iterable[Any],
26902690
__iterable_b: Iterable[Any],
26912691
__iterable_c: Iterable[Any],
@@ -2812,7 +2812,7 @@ def cartesian_product(
28122812

28132813

28142814
@overload
2815-
def cartesian_product( # type: ignore
2815+
def cartesian_product(
28162816
__iterable_a: Iterable[Any],
28172817
__iterable_b: Iterable[Any],
28182818
__iterable_c: Iterable[Any],

0 commit comments

Comments
 (0)