From 2460b4822a1c8c9b931af4abbfc450b9e923cfd6 Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Sun, 21 May 2023 12:25:54 +0300 Subject: [PATCH] Remove print() in detector_config.py Co-authored-by: Blake Blackshear --- frigate/detectors/detector_config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frigate/detectors/detector_config.py b/frigate/detectors/detector_config.py index c3b56dc6a..e949065b4 100644 --- a/frigate/detectors/detector_config.py +++ b/frigate/detectors/detector_config.py @@ -119,7 +119,6 @@ class ModelConfig(BaseModel): def compute_model_hash(self) -> None: if not self.path or not os.path.exists(self.path): - print("File does not exist or path is empty.") self._model_hash = hashlib.md5(b"unknown").hexdigest() else: with open(self.path, "rb") as f: