@@ -0,0 +1,7 @@
+from enum import Enum
+
+class Season(str, Enum):
+ cooling = "Cooling"
+ heating = "Warm"
+ transition = "Transition"