Skip to content

Commit

Permalink
Remove print() in detector_config.py
Browse files Browse the repository at this point in the history
Co-authored-by: Blake Blackshear <[email protected]>
  • Loading branch information
skrashevich and blakeblackshear committed May 21, 2023
1 parent bebb22d commit 2460b48
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frigate/detectors/detector_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ def check_and_load_plus_model(

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:
Expand Down

0 comments on commit 2460b48

Please sign in to comment.