Formatting

This commit is contained in:
Nick Mowen 2023-04-20 16:03:35 -06:00
parent 922d327ebf
commit f2d8298337
2 changed files with 7 additions and 5 deletions

View File

@ -291,7 +291,9 @@ class FrigateApp:
logger.info(f"Capture process started for {name}: {capture_process.pid}") logger.info(f"Capture process started for {name}: {capture_process.pid}")
def start_timeline_processor(self) -> None: def start_timeline_processor(self) -> None:
self.timeline_processor = TimelineProcessor(self.timeline_queue, self.stop_event) self.timeline_processor = TimelineProcessor(
self.timeline_queue, self.stop_event
)
self.timeline_processor.start() self.timeline_processor.start()
def start_event_processor(self) -> None: def start_event_processor(self) -> None: