From 5bda917b3179773ba885794e93d4b4bf78139222 Mon Sep 17 00:00:00 2001 From: GaryHuang-ASUS Date: Wed, 24 Sep 2025 02:02:35 +0800 Subject: [PATCH] [Fix] Fix InputTensorEnum not defined error - import InputTensorEnum from detector_config --- frigate/detectors/plugins/synaptics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/detectors/plugins/synaptics.py b/frigate/detectors/plugins/synaptics.py index 8097b34f4..70d972595 100644 --- a/frigate/detectors/plugins/synaptics.py +++ b/frigate/detectors/plugins/synaptics.py @@ -10,7 +10,7 @@ from synap.preprocessor import Preprocessor from synap.postprocessor import Detector from frigate.detectors.detection_api import DetectionApi -from frigate.detectors.detector_config import BaseDetectorConfig, ModelTypeEnum +from frigate.detectors.detector_config import BaseDetectorConfig, ModelTypeEnum, InputTensorEnum logger = logging.getLogger(__name__)