from enum import Enum from enum import auto class Status(Enum): INACTIVE = auto() ACTIVE = auto()