Whether actively capturing -- not disabled or closed.
(self)
| 985 | self._capture.resume_capturing() |
| 986 | |
| 987 | def _is_started(self) -> bool: |
| 988 | """Whether actively capturing -- not disabled or closed.""" |
| 989 | if self._capture is not None: |
| 990 | return self._capture.is_started() |
| 991 | return False |
| 992 | |
| 993 | @contextlib.contextmanager |
| 994 | def disabled(self) -> Generator[None]: |
no test coverage detected