from enum import Enum from enum import auto class BreedSize(Enum): SMALL = 'Small' MEDIUM = 'Medium' LARGE = 'Large' XLARGE = 'X-large'