(self, **kwargs)
| 410 | # TODO: There's a few objects similar to this in various tests, let's |
| 411 | # try and consolidate to this one in a future commit. |
| 412 | def stream(self, **kwargs): |
| 413 | contents = self.read() |
| 414 | while contents: |
| 415 | yield contents |
| 416 | contents = self.read() |
| 417 | |
| 418 | |
| 419 | @dataclasses.dataclass |