From 5a395b469934823f19ef1cb61b157f578070c6b4 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 3 Feb 2026 07:21:19 -0700 Subject: [PATCH] Clenaup --- frigate/util/builtin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/util/builtin.py b/frigate/util/builtin.py index 4443888cf..867d2533d 100644 --- a/frigate/util/builtin.py +++ b/frigate/util/builtin.py @@ -129,7 +129,9 @@ def get_ffmpeg_arg_list(arg: Any) -> list: return arg if isinstance(arg, list) else shlex.split(arg) -def load_labels(path: Optional[str], encoding="utf-8", prefill=91, indexed: bool | None = None): +def load_labels( + path: Optional[str], encoding="utf-8", prefill=91, indexed: bool | None = None +): """Loads labels from file (with or without index numbers). Args: path: path to label file.