AttributeError: 'itertools.count' object has no attribute '__next__'

This commit is contained in:
Simon Forman 2020-04-24 10:10:50 -07:00
parent 25525deb53
commit c9082be37d
1 changed files with 2 additions and 2 deletions

View File

@ -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))