AttributeError: 'itertools.count' object has no attribute '__next__'
This commit is contained in:
parent
25525deb53
commit
c9082be37d
|
|
@ -75,8 +75,8 @@ from .utils.types import (
|
|||
)
|
||||
|
||||
|
||||
_SYM_NUMS = count().__next__
|
||||
_COMB_NUMS = count().__next__
|
||||
_SYM_NUMS = lambda: next(count())
|
||||
_COMB_NUMS = lambda: next(count())
|
||||
|
||||
|
||||
_R = list(range(10))
|
||||
|
|
|
|||
Loading…
Reference in New Issue