(self, count)
| 1973 | |
| 1974 | @functools.wraps(DatasetV2.skip) |
| 1975 | def skip(self, count): |
| 1976 | return DatasetV1Adapter(super(DatasetV1, self).skip(count)) |
| 1977 | |
| 1978 | @functools.wraps(DatasetV2.shard) |
| 1979 | def shard(self, num_shards, index): |
nothing calls this directly
no test coverage detected