(self)
| 573 | self._state = CircuitState.OPEN |
| 574 | |
| 575 | def reset(self) -> None: |
| 576 | with self._lock: |
| 577 | self._failures = 0 |
| 578 | self._state = CircuitState.CLOSED |
| 579 | self._last_failure_time = None |
| 580 | |
| 581 | |
| 582 | # ============================================================================= |
nothing calls this directly
no outgoing calls
no test coverage detected