diff --git a/README.md b/README.md index babf11e..34cc599 100644 --- a/README.md +++ b/README.md @@ -569,9 +569,9 @@ Enum ```python from enum import Enum, auto class (Enum): - = - = , - = auto() # Can be used for automatic indexing. + member_name_1 = value_1 + member_name_2 = value_2_a, value_2_b + member_name_3 = auto() # Can be used for automatic indexing. ... @classmethod