From b9494b995b87cd7575c2ba69f41f6532e849a3a9 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Tue, 17 Oct 2023 06:54:23 -0600 Subject: [PATCH] Fix mypy --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index e846be7d5..f89a0c12f 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -70,7 +70,7 @@ class FrigateApp: self.feature_metrics: dict[str, FeatureMetricsTypes] = {} self.ptz_metrics: dict[str, PTZMetricsTypes] = {} self.processes: dict[str, int] = {} - self.region_grids: dict[str, list[list[dict[str, any]]]] = {} + self.region_grids: dict[str, list[list[dict[str, int]]]] = {} def set_environment_vars(self) -> None: for key, value in self.config.environment_vars.items():