aenum icon indicating copy to clipboard operation
aenum copied to clipboard

Possible to create an auto() Enum with the inheriting class name?

Open mzhukovs opened this issue 1 year ago • 0 comments

class MyEnum(AutoClassStrEnum): TEST_1 = auto() TEST_2 = auto()

assert MyEnum.TEST_1.value == "MyEnum.TEST_1 "

mzhukovs avatar Aug 20 '23 07:08 mzhukovs