diff --git a/frigate/watchdog.py b/frigate/watchdog.py index 4c49de1a03..cd7614a907 100644 --- a/frigate/watchdog.py +++ b/frigate/watchdog.py @@ -33,9 +33,9 @@ class FrigateWatchdog(threading.Thread): detector.start_or_restart() elif ( detector.detect_process is not None - and not detector.detect_process.is_alive() + and not detector.detect_process.is_alive() # type: ignore[unreachable] ): - logger.info("Detection appears to have stopped. Exiting Frigate...") + logger.info("Detection appears to have stopped. Exiting Frigate...") # type: ignore[unreachable] restart_frigate() logger.info("Exiting watchdog...")