Skip to content

Commit c991ef0

Browse files
committed
-
1 parent 21f2c9f commit c991ef0

File tree

1 file changed

+1
-1
lines changed
  • source_py3/python_toolbox/combi/perming

1 file changed

+1
-1
lines changed

source_py3/python_toolbox/combi/perming/perm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ class UnrecurrentedMixin:
428428
'''Mixin for a permutation in a space that's been unrecurrented.'''
429429
def __getitem__(self, i):
430430
return super().__getitem__(i)[1]
431-
def __iter__(self, i):
431+
def __iter__(self):
432432
return iter(tuple(zip(*super().__iter__()))[1])
433433
index = lambda self, item: self.nominal_perm_space.domain[
434434
next(j for j, pair in enumerate(self._perm_sequence)

0 commit comments

Comments
 (0)