From 37930609ffd27d1aca55dd705290b400cf1b0d59 Mon Sep 17 00:00:00 2001 From: Kinar R <42828719+kinaryml@users.noreply.github.com> Date: Wed, 9 Nov 2022 02:58:38 +0530 Subject: [PATCH] Update landmark_detection_result.py --- .../python/components/containers/landmark_detection_result.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mediapipe/tasks/python/components/containers/landmark_detection_result.py b/mediapipe/tasks/python/components/containers/landmark_detection_result.py index 5e68efda..d115cb52 100644 --- a/mediapipe/tasks/python/components/containers/landmark_detection_result.py +++ b/mediapipe/tasks/python/components/containers/landmark_detection_result.py @@ -97,8 +97,7 @@ class LandmarksDetectionResult: landmarks.append(_NormalizedLandmark.create_from_pb2(landmark)) for landmark in pb2_obj.world_landmarks.landmark: - world_landmarks.append(_Landmark.create_from_pb2(landmark) - ) + world_landmarks.append(_Landmark.create_from_pb2(landmark)) return LandmarksDetectionResult( landmarks=landmarks, categories=categories,