(datasets)
| 1939 | @staticmethod |
| 1940 | @functools.wraps(DatasetV2.zip) |
| 1941 | def zip(datasets): |
| 1942 | return DatasetV1Adapter(DatasetV2.zip(datasets)) |
| 1943 | |
| 1944 | @functools.wraps(DatasetV2.concatenate) |
| 1945 | def concatenate(self, dataset): |
nothing calls this directly
no test coverage detected