We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfa0664 commit 24ac4cdCopy full SHA for 24ac4cd
source_py2/python_toolbox/combi/chain_space.py
@@ -83,7 +83,8 @@ def __getitem__(self, i):
83
84
def __iter__(self):
85
for sequence in self.sequences:
86
- yield from sequence
+ for thing in sequence:
87
+ yield thing
88
89
_reduced = property(lambda self: (type(self), self.sequences))
90
0 commit comments