Skip to content

Commit

Permalink
tensorflow fix tensorflow.data.Dataset's zip (#11357)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoel-bagard authored Feb 5, 2024
1 parent bf58d62 commit 3600c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/tensorflow/tensorflow/data/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class Dataset(ABC, Generic[_T1]):
@overload
@staticmethod
def zip(
*args: Collection[Dataset[Any]] | ContainerGeneric[Dataset[Any]], name: str | None = None
*args: Dataset[Any] | Collection[Dataset[Any]] | ContainerGeneric[Dataset[Any]], name: str | None = None
) -> Dataset[tuple[Any, ...]]: ...
@overload
@staticmethod
Expand Down

0 comments on commit 3600c80

Please sign in to comment.