(self, limit: int | None = None)
| 6 | |
| 7 | class DummyDataset(IterableDataset): |
| 8 | def __init__(self, limit: int | None = None) -> None: |
| 9 | self.limit = limit |
| 10 | |
| 11 | def __iter__(self) -> Iterator: |
| 12 | if self.limit: |
nothing calls this directly
no outgoing calls
no test coverage detected