From dd502cdfdc70281773b4ef86512cdb07cc1a33be Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 29 May 2024 07:09:39 -0600 Subject: [PATCH] Formatting --- frigate/util/config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frigate/util/config.py b/frigate/util/config.py index eee037a87..2e66854a2 100644 --- a/frigate/util/config.py +++ b/frigate/util/config.py @@ -197,8 +197,8 @@ def get_relative_coordinates( return mask -class StreamInfoRetriever(): +class StreamInfoRetriever: def __init__(self) -> None: self.stream_cache: dict[str, tuple[int, int]] = {} @@ -209,5 +209,3 @@ class StreamInfoRetriever(): info = asyncio.run(get_video_properties(input.path)) self.stream_cache[path] = info return info - -