From 19b892f76b32f8cdd8f55cb35dc74ed611b0d095 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 24 Jul 2024 14:19:42 +0200 Subject: [PATCH] Fix missing @property --- PythonAPI/carla/source/carla/libcarla.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/PythonAPI/carla/source/carla/libcarla.pyi b/PythonAPI/carla/source/carla/libcarla.pyi index 0b3a7a163..076663929 100644 --- a/PythonAPI/carla/source/carla/libcarla.pyi +++ b/PythonAPI/carla/source/carla/libcarla.pyi @@ -1806,6 +1806,7 @@ class LaneInvasionEvent(SensorData): def actor() -> Actor: """Gets the actor the sensor is attached to, the one that invaded another lane.""" + @property def crossed_lane_markings() -> list[LaneMarking]: """List of lane markings that have been crossed and detected by the sensor.""" # endregion