feedback.py 448 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. from enum import Enum
  3. class Feedback(str, Enum):
  4. a_little_cold = "a little cold"
  5. so_cold = "so cold"
  6. a_little_hot = "a little hot"
  7. so_hot = "so hot"
  8. noisy_or_blowy = "noisy or blowy"
  9. so_stuffy = "so stuffy"
  10. more_sunshine = "more sunshine"
  11. less_sunshine = "less sunshine"
  12. send_a_repairman = "send a repairman"
  13. switch_off = "switch off"
  14. nice = "nice"
  15. switch_on = "switch on"