AttributeError: 'itertools.count' object has no attribute '__next__'
This commit is contained in:
+2
-2
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user