Whether actively capturing -- not disabled or closed.
(self)
| 858 | self._capture.resume_capturing() |
| 859 | |
| 860 | def _is_started(self) -> bool: |
| 861 | """Whether actively capturing -- not disabled or closed.""" |
| 862 | if self._capture is not None: |
| 863 | return self._capture.is_started() |
| 864 | return False |
| 865 | |
| 866 | @contextlib.contextmanager |
| 867 | def disabled(self) -> Generator[None, None, None]: |
no test coverage detected