Skip to content

Commit c36aa9a

Browse files
committed
fix typo
1 parent dae501d commit c36aa9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/datafusion/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@ def __iter__(self) -> Iterator[RecordBatch]:
11531153
def __aiter__(self) -> AsyncIterator[RecordBatch]:
11541154
"""Return an async iterator over this DataFrame's record batches.
11551155
1156-
We're using __aiter__ becaause we support Python < 3.10 where aiter() is not
1156+
We're using __aiter__ because we support Python < 3.10 where aiter() is not
11571157
available.
11581158
"""
11591159
return self.execute_stream().__aiter__()

0 commit comments

Comments
 (0)