(self)
| 210 | assert not self.buf, '`__exit__` should have already been called, please use context manager' |
| 211 | |
| 212 | def __enter__(self): |
| 213 | return self |
| 214 | |
| 215 | def __exit__(self, _exc_type, _exc_val, _exc_tb): |
| 216 | if self.buf: |
nothing calls this directly
no outgoing calls
no test coverage detected