Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit b89b2ef

Browse files
committed
Fix Continuous iterator in python2
1 parent a3c0c80 commit b89b2ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pocketsphinx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@ def __next__(self):
182182
raise StopIteration
183183

184184
def next(self):
185-
self.__next__()
185+
return self.__next__()

0 commit comments

Comments
 (0)