# -*- coding: utf-8 -*- from enum import Enum class FeedbackValue(str, Enum): null = "null" a_little_cold = "1" so_cold = "2" a_little_hot = "3" so_hot = "4" noisy_or_blowy = "5" so_stuffy = "6" more_sunshine = "7" less_sunshine = "8" send_a_repairman = "9" switch_off = "10" nice = "11" switch_on = "12"