From f275e47f4e30531c90a37eaee5ee409bd292c963 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 29 Feb 2024 10:40:17 +0100 Subject: [PATCH] Added missing type for Labelled Point --- PythonAPI/carla/source/carla/libcarla.pyi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PythonAPI/carla/source/carla/libcarla.pyi b/PythonAPI/carla/source/carla/libcarla.pyi index 33ceabd61..2b464f9d5 100644 --- a/PythonAPI/carla/source/carla/libcarla.pyi +++ b/PythonAPI/carla/source/carla/libcarla.pyi @@ -1563,14 +1563,13 @@ class LabelledPoint(): """Class that represent a position in space with a semantic label.""" # region Instance Variables - # TODO 类型未定义 @property def location() -> Location: """Position in 3D space.""" ... @property - def label(): + def label() -> CityObjectLabel: """Semantic tag of the point.""" ... # endregion