Skip to content

Commit

Permalink
Fix iterator merge typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lnauta committed Aug 16, 2023
1 parent 35a29d5 commit cc5c961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picas/iterators.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def stop(self):
def is_stopped(self):
return self._stop

def __next__(self):
def next(self):
return self.__next__()

def __next__(self):
Expand Down

0 comments on commit cc5c961

Please sign in to comment.