from enum import Enum


class Season(str, Enum):
    cooling = "Cooling"
    heating = "Warm"
    transition = "Transition"