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]]