From 6689b82f548b268348ba6e3ef453b340c0ca5d9a Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 1 Jun 2023 11:31:52 -0600 Subject: [PATCH] Formatting --- frigate/object_processing.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/object_processing.py b/frigate/object_processing.py index c8cbe7245..6455f6eba 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -153,7 +153,9 @@ class TrackedObject: # an object is only considered present in a zone if it has a zone inertia of 3+ if zone_score >= zone.inertia: # if the object passed the filters once, dont apply again - if name in self.current_zones or not zone_filtered(self, zone.filters): + if name in self.current_zones or not zone_filtered( + self, zone.filters + ): current_zones.append(name) if name not in self.entered_zones: self.entered_zones.append(name)