From 4076bdf4070a891766bb1ff973e7d89fb47b5905 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 20 Mar 2026 18:50:18 -0500 Subject: [PATCH] fix typing --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index a6fa13ad17..be1ebe46b6 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -529,7 +529,7 @@ class FrigateApp: if not hasattr(self, attr): continue - def on_restart(proc: FrigateProcess, _attr=attr, _key=key) -> None: + def on_restart(proc: FrigateProcess, _attr: str = attr, _key: str = key) -> None: setattr(self, _attr, proc) self.processes[_key] = proc.pid or 0