Added DSVEventArray iterator

This commit is contained in:
Daniel 2024-02-29 10:22:27 +01:00 committed by Blyron
parent 251b293d61
commit 7b2c1db39b
1 changed files with 1 additions and 1 deletions

View File

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