from enum import Enum from enum import auto class BreedSize(Enum): SMALL = auto() MEDIUM = auto() LARGE = auto()