From 9b003e175d74997de41e80c29b6d076e61982baa Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 29 Nov 2023 16:37:28 -0700 Subject: [PATCH] Don't incorrectly overwrite score history (#8795) --- frigate/object_processing.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/frigate/object_processing.py b/frigate/object_processing.py index afd2cb1a4..b0e5b9a52 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -128,9 +128,6 @@ class TrackedObject: self.frame = None self.previous = self.to_dict() - # start the score history - self.score_history = [self.obj_data["score"]] - def _is_false_positive(self): # once a true positive, always a true positive if not self.false_positive: