Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 9 additions & 27 deletions src/apify_client/clients/resource_clients/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,7 @@ def list_items(
desc: bool | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_hidden: bool | None = None,
flatten: list[str] | None = None,
Expand Down Expand Up @@ -163,9 +161,7 @@ def iterate_items(
desc: bool | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_hidden: bool | None = None,
) -> Iterator[dict]:
Expand Down Expand Up @@ -248,9 +244,7 @@ def download_items(
delimiter: str | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_header_row: bool | None = None,
skip_hidden: bool | None = None,
Expand Down Expand Up @@ -342,9 +336,7 @@ def get_items_as_bytes(
delimiter: str | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_header_row: bool | None = None,
skip_hidden: bool | None = None,
Expand Down Expand Up @@ -438,9 +430,7 @@ def stream_items(
delimiter: str | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_header_row: bool | None = None,
skip_hidden: bool | None = None,
Expand Down Expand Up @@ -625,9 +615,7 @@ async def list_items(
desc: bool | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_hidden: bool | None = None,
flatten: list[str] | None = None,
Expand Down Expand Up @@ -713,9 +701,7 @@ async def iterate_items(
desc: bool | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_hidden: bool | None = None,
) -> AsyncIterator[dict]:
Expand Down Expand Up @@ -799,9 +785,7 @@ async def get_items_as_bytes(
delimiter: str | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_header_row: bool | None = None,
skip_hidden: bool | None = None,
Expand Down Expand Up @@ -895,9 +879,7 @@ async def stream_items(
delimiter: str | None = None,
fields: list[str] | None = None,
omit: list[str] | None = None,
# TODO: change to list[str] only when doing a breaking release
# https://github.com/apify/apify-client-python/issues/255
unwind: str | list[str] | None = None,
unwind: list[str] | None = None,
skip_empty: bool | None = None,
skip_header_row: bool | None = None,
skip_hidden: bool | None = None,
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading