Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update function doc_string for last_values arg
  • Loading branch information
oscar-LT authored and ethanfurman committed Jun 22, 2022
commit 606e29af100f09ce2dc61f44a8bd7e5dbd65cb95
2 changes: 1 addition & 1 deletion Lib/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,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 list of values assigned
"""
incrementable_last_values = []
for val in last_values:
Expand Down