From d1d9db33e9c9ce4d5f0d37d70b8135aea7028083 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 5 Feb 2024 15:24:54 -0700 Subject: [PATCH] Format tests --- frigate/test/test_video.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frigate/test/test_video.py b/frigate/test/test_video.py index 339660bb5..2cc5b482f 100644 --- a/frigate/test/test_video.py +++ b/frigate/test/test_video.py @@ -288,7 +288,10 @@ class TestObjectBoundingBoxes(unittest.TestCase): assert len(consolidated_detections) == len(detections) def test_vert_stacked_cars_not_reduced(self): - detections = [("car", 0.8, (954, 312, 1247, 475), 498512, 1.48, (800, 200, 1400, 600)), ("car", 0.85, (970, 380, 1273, 610), 698752, 1.56, (800, 200, 1400, 700))] + detections = [ + ("car", 0.8, (954, 312, 1247, 475), 498512, 1.48, (800, 200, 1400, 600)), + ("car", 0.85, (970, 380, 1273, 610), 698752, 1.56, (800, 200, 1400, 700)), + ] frame_shape = (720, 1280) consolidated_detections = reduce_detections(frame_shape, detections) assert len(consolidated_detections) == len(detections)