@@ -75,9 +75,7 @@ def list_items(
75
75
desc : bool | None = None ,
76
76
fields : list [str ] | None = None ,
77
77
omit : list [str ] | None = None ,
78
- # TODO: change to list[str] only when doing a breaking release
79
- # https://github.com/apify/apify-client-python/issues/255
80
- unwind : str | list [str ] | None = None ,
78
+ unwind : list [str ] | None = None ,
81
79
skip_empty : bool | None = None ,
82
80
skip_hidden : bool | None = None ,
83
81
flatten : list [str ] | None = None ,
@@ -163,9 +161,7 @@ def iterate_items(
163
161
desc : bool | None = None ,
164
162
fields : list [str ] | None = None ,
165
163
omit : list [str ] | None = None ,
166
- # TODO: change to list[str] only when doing a breaking release
167
- # https://github.com/apify/apify-client-python/issues/255
168
- unwind : str | list [str ] | None = None ,
164
+ unwind : list [str ] | None = None ,
169
165
skip_empty : bool | None = None ,
170
166
skip_hidden : bool | None = None ,
171
167
) -> Iterator [dict ]:
@@ -248,9 +244,7 @@ def download_items(
248
244
delimiter : str | None = None ,
249
245
fields : list [str ] | None = None ,
250
246
omit : list [str ] | None = None ,
251
- # TODO: change to list[str] only when doing a breaking release
252
- # https://github.com/apify/apify-client-python/issues/255
253
- unwind : str | list [str ] | None = None ,
247
+ unwind : list [str ] | None = None ,
254
248
skip_empty : bool | None = None ,
255
249
skip_header_row : bool | None = None ,
256
250
skip_hidden : bool | None = None ,
@@ -342,9 +336,7 @@ def get_items_as_bytes(
342
336
delimiter : str | None = None ,
343
337
fields : list [str ] | None = None ,
344
338
omit : list [str ] | None = None ,
345
- # TODO: change to list[str] only when doing a breaking release
346
- # https://github.com/apify/apify-client-python/issues/255
347
- unwind : str | list [str ] | None = None ,
339
+ unwind : list [str ] | None = None ,
348
340
skip_empty : bool | None = None ,
349
341
skip_header_row : bool | None = None ,
350
342
skip_hidden : bool | None = None ,
@@ -438,9 +430,7 @@ def stream_items(
438
430
delimiter : str | None = None ,
439
431
fields : list [str ] | None = None ,
440
432
omit : list [str ] | None = None ,
441
- # TODO: change to list[str] only when doing a breaking release
442
- # https://github.com/apify/apify-client-python/issues/255
443
- unwind : str | list [str ] | None = None ,
433
+ unwind : list [str ] | None = None ,
444
434
skip_empty : bool | None = None ,
445
435
skip_header_row : bool | None = None ,
446
436
skip_hidden : bool | None = None ,
@@ -625,9 +615,7 @@ async def list_items(
625
615
desc : bool | None = None ,
626
616
fields : list [str ] | None = None ,
627
617
omit : list [str ] | None = None ,
628
- # TODO: change to list[str] only when doing a breaking release
629
- # https://github.com/apify/apify-client-python/issues/255
630
- unwind : str | list [str ] | None = None ,
618
+ unwind : list [str ] | None = None ,
631
619
skip_empty : bool | None = None ,
632
620
skip_hidden : bool | None = None ,
633
621
flatten : list [str ] | None = None ,
@@ -713,9 +701,7 @@ async def iterate_items(
713
701
desc : bool | None = None ,
714
702
fields : list [str ] | None = None ,
715
703
omit : list [str ] | None = None ,
716
- # TODO: change to list[str] only when doing a breaking release
717
- # https://github.com/apify/apify-client-python/issues/255
718
- unwind : str | list [str ] | None = None ,
704
+ unwind : list [str ] | None = None ,
719
705
skip_empty : bool | None = None ,
720
706
skip_hidden : bool | None = None ,
721
707
) -> AsyncIterator [dict ]:
@@ -799,9 +785,7 @@ async def get_items_as_bytes(
799
785
delimiter : str | None = None ,
800
786
fields : list [str ] | None = None ,
801
787
omit : list [str ] | None = None ,
802
- # TODO: change to list[str] only when doing a breaking release
803
- # https://github.com/apify/apify-client-python/issues/255
804
- unwind : str | list [str ] | None = None ,
788
+ unwind : list [str ] | None = None ,
805
789
skip_empty : bool | None = None ,
806
790
skip_header_row : bool | None = None ,
807
791
skip_hidden : bool | None = None ,
@@ -895,9 +879,7 @@ async def stream_items(
895
879
delimiter : str | None = None ,
896
880
fields : list [str ] | None = None ,
897
881
omit : list [str ] | None = None ,
898
- # TODO: change to list[str] only when doing a breaking release
899
- # https://github.com/apify/apify-client-python/issues/255
900
- unwind : str | list [str ] | None = None ,
882
+ unwind : list [str ] | None = None ,
901
883
skip_empty : bool | None = None ,
902
884
skip_header_row : bool | None = None ,
903
885
skip_hidden : bool | None = None ,
0 commit comments