File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ async def list_items(
8787 """
8888
8989 @abstractmethod
90- async def iterate_items (
90+ def iterate_items (
9191 self ,
9292 * ,
9393 offset : int = 0 ,
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ async def list_items(
203203 )
204204
205205 @override
206- async def iterate_items ( # type: ignore
206+ async def iterate_items (
207207 self ,
208208 * ,
209209 offset : int = 0 ,
Original file line number Diff line number Diff line change @@ -404,7 +404,7 @@ async def iterate_items(
404404 Yields:
405405 Each item from the dataset as a dictionary.
406406 """
407- async for item in self ._resource_client .iterate_items ( # type: ignore
407+ async for item in self ._resource_client .iterate_items (
408408 offset = offset ,
409409 limit = limit ,
410410 clean = clean ,
You can’t perform that action at this time.
0 commit comments