(self, filename="")
| 1965 | |
| 1966 | @functools.wraps(DatasetV2.cache) |
| 1967 | def cache(self, filename=""): |
| 1968 | return DatasetV1Adapter(super(DatasetV1, self).cache(filename)) |
| 1969 | |
| 1970 | @functools.wraps(DatasetV2.take) |
| 1971 | def take(self, count): |
nothing calls this directly
no test coverage detected