(self, *args)
| 333 | return self._data |
| 334 | |
| 335 | def __exit__(self, *args): # noqa: D105 |
| 336 | self._ctx.__exit__(*args) |
| 337 | logger.removeHandler(self._lh) |
| 338 | set_log_file(None) |
| 339 | |
| 340 | |
| 341 | @contextlib.contextmanager |
nothing calls this directly
no test coverage detected