Added DSVEventArray iterator

This commit is contained in:
Daniel 2024-02-29 10:22:27 +01:00 committed by Daraan
parent 7a2b2e2771
commit 353e3ebece
1 changed files with 1 additions and 1 deletions

View File

@ -1136,7 +1136,7 @@ class DVSEventArray():
# region Dunder Methods # region Dunder Methods
def __getitem__(self, pos: int): ... def __getitem__(self, pos: int): ...
def __iter__(self): def __iter__(self) -> Iterator[DVSEvent]:
"""Iterate over the `carla.DVSEvent` retrieved as data.""" """Iterate over the `carla.DVSEvent` retrieved as data."""
def __len__(self): ... def __len__(self): ...