From 0feaef0031acee8446996fd09718fb2348d20cfd Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 3 Jul 2023 11:41:20 -0500 Subject: [PATCH] fix type --- frigate/ptz_autotrack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/ptz_autotrack.py b/frigate/ptz_autotrack.py index 84ea6a324..81af28e34 100644 --- a/frigate/ptz_autotrack.py +++ b/frigate/ptz_autotrack.py @@ -84,7 +84,7 @@ class PtzAutoTrackerThread(threading.Thread): self, config: FrigateConfig, onvif: OnvifController, - camera_metrics: CameraMetricsTypes, + camera_metrics: dict[str, CameraMetricsTypes], stop_event: MpEvent, ) -> None: threading.Thread.__init__(self)