Skip to content

Commit f289536

Browse files
committed
Fix bad merge, should have been Iterable rather than Iterator
1 parent 77048f8 commit f289536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/resultiterable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
import collections
2121

22-
class ResultIterable(collections.Iterator):
22+
class ResultIterable(collections.Iterable):
2323
"""
2424
A special result iterable. This is used because the standard iterator can not be pickled
2525
"""

0 commit comments

Comments
 (0)