Skip to content

Commit

Permalink
Fix bad merge, should have been Iterable rather than Iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Apr 8, 2014
1 parent 77048f8 commit f289536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/resultiterable.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import collections

class ResultIterable(collections.Iterator):
class ResultIterable(collections.Iterable):
"""
A special result iterable. This is used because the standard iterator can not be pickled
"""
Expand Down

0 comments on commit f289536

Please sign in to comment.