From 9ce16fddebcf0c7152ef9ecee670a6d352f4cfd6 Mon Sep 17 00:00:00 2001 From: Yuqi Li Date: Tue, 2 May 2023 11:54:23 -0700 Subject: [PATCH] nit: format the documentation of LandmarksDetectionResult. PiperOrigin-RevId: 528848566 --- .../components/containers/landmark_detection_result.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/mediapipe/tasks/python/components/containers/landmark_detection_result.py b/mediapipe/tasks/python/components/containers/landmark_detection_result.py index c60ad850c..fdb719b92 100644 --- a/mediapipe/tasks/python/components/containers/landmark_detection_result.py +++ b/mediapipe/tasks/python/components/containers/landmark_detection_result.py @@ -39,9 +39,11 @@ _Landmark = landmark_module.Landmark class LandmarksDetectionResult: """Represents the landmarks detection result. - Attributes: landmarks : A list of `NormalizedLandmark` objects. categories : A - list of `Category` objects. world_landmarks : A list of `Landmark` objects. - rect : A `NormalizedRect` object. + Attributes: + landmarks: A list of `NormalizedLandmark` objects. + categories: A list of `Category` objects. + world_landmarks: A list of `Landmark` objects. + rect: A `NormalizedRect` object. """ landmarks: Optional[List[_NormalizedLandmark]]