Formatting

This commit is contained in:
Nicolas Mowen 2024-05-29 07:09:39 -06:00
parent 0c29c059ad
commit dd502cdfdc

View File

@ -197,8 +197,8 @@ def get_relative_coordinates(
return mask return mask
class StreamInfoRetriever():
class StreamInfoRetriever:
def __init__(self) -> None: def __init__(self) -> None:
self.stream_cache: dict[str, tuple[int, int]] = {} self.stream_cache: dict[str, tuple[int, int]] = {}
@ -209,5 +209,3 @@ class StreamInfoRetriever():
info = asyncio.run(get_video_properties(input.path)) info = asyncio.run(get_video_properties(input.path))
self.stream_cache[path] = info self.stream_cache[path] = info
return info return info