From 75853932c721205b75866c860ab47f11bc2cb749 Mon Sep 17 00:00:00 2001 From: HaleySchuhl Date: Tue, 7 May 2024 15:43:32 -0500 Subject: [PATCH] wrong place --- tests/test_annotate_points.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_annotate_points.py b/tests/test_annotate_points.py index e2317e1..6b6c382 100644 --- a/tests/test_annotate_points.py +++ b/tests/test_annotate_points.py @@ -163,6 +163,7 @@ def test_points_save_coords(test_data): img = cv2.imread(test_data.small_rgb_img) drawer = Points(img=img) # Populate attribute with coords + totalpoints1 = [(158, 531), (361, 112), (500, 418)] drawer.coords = {'default': totalpoints1} drawer.save_coords() @@ -170,7 +171,6 @@ def test_points_save_coords(test_data): def test_points_save_counts(test_data): img = cv2.imread(test_data.small_rgb_img) - totalpoints1 = [(158, 531), (361, 112), (500, 418)] drawer = Points(img=img) # Populate attribute with coords drawer.count = {'default': 1}