Skip to content

Commit 24ac4cd

Browse files
committed
-
1 parent dfa0664 commit 24ac4cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source_py2/python_toolbox/combi/chain_space.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ def __getitem__(self, i):
8383

8484
def __iter__(self):
8585
for sequence in self.sequences:
86-
yield from sequence
86+
for thing in sequence:
87+
yield thing
8788

8889
_reduced = property(lambda self: (type(self), self.sequences))
8990

0 commit comments

Comments
 (0)