From cd640c403a7fc3ca9ea8ff581d1dc71bbf5d6c34 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 21 Sep 2022 12:51:58 +0200 Subject: [PATCH] :sparkles: --- robot/arlo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robot/arlo.py b/robot/arlo.py index 9f824e7..9ca7bb4 100644 --- a/robot/arlo.py +++ b/robot/arlo.py @@ -110,7 +110,7 @@ class Arlo(): parameters=aruco_params ) - return zip(corners, ids) if corners is not None else [] + return list(zip(corners, ids)) if corners is not None else [] def draw_arucos(self, image, bounding_boxes): for bounding, n in bounding_boxes: