Skip to content

Commit

Permalink
[Enum] fix typo (pythonGH-94158)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfurman authored Jun 23, 2022
1 parent 5b6e576 commit b4e0d61
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Lib/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -1205,21 +1205,21 @@ def __new__(cls, value):
def __init__(self, *args, **kwds):
pass

def _generate_next_value_(name, start, count, last_value):
def _generate_next_value_(name, start, count, last_values):
"""
Generate the next value when not given.
name: the name of the member
start: the initial start value or None
count: the number of existing members
last_value: the list of values assigned
last_values: the list of values assigned
"""
if not last_value:
if not last_values:
return start
try:
last = last_value[-1]
last_value.sort()
if last == last_value[-1]:
last = last_values[-1]
last_values.sort()
if last == last_values[-1]:
# no difference between old and new methods
return last + 1
else:
Expand All @@ -1233,7 +1233,7 @@ def _generate_next_value_(name, start, count, last_value):
DeprecationWarning,
stacklevel=3,
)
for v in last_value:
for v in last_values:
try:
return v + 1
except TypeError:
Expand Down Expand Up @@ -1389,7 +1389,7 @@ def _generate_next_value_(name, start, count, last_values):
name: the name of the member
start: the initial start value or None
count: the number of existing members
last_value: the last value assigned or None
last_values: the last value assigned or None
"""
if not count:
return start if start is not None else 1
Expand Down

0 comments on commit b4e0d61

Please sign in to comment.