We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dae501d commit c36aa9aCopy full SHA for c36aa9a
python/datafusion/dataframe.py
@@ -1153,7 +1153,7 @@ def __iter__(self) -> Iterator[RecordBatch]:
1153
def __aiter__(self) -> AsyncIterator[RecordBatch]:
1154
"""Return an async iterator over this DataFrame's record batches.
1155
1156
- We're using __aiter__ becaause we support Python < 3.10 where aiter() is not
+ We're using __aiter__ because we support Python < 3.10 where aiter() is not
1157
available.
1158
"""
1159
return self.execute_stream().__aiter__()
0 commit comments