(self, dataset)
| 1943 | |
| 1944 | @functools.wraps(DatasetV2.concatenate) |
| 1945 | def concatenate(self, dataset): |
| 1946 | return DatasetV1Adapter(super(DatasetV1, self).concatenate(dataset)) |
| 1947 | |
| 1948 | @functools.wraps(DatasetV2.prefetch) |
| 1949 | def prefetch(self, buffer_size): |
nothing calls this directly
no test coverage detected