From a9abe87413628891358a82210bb0d025e74ec2cf Mon Sep 17 00:00:00 2001 From: Kelvin Ly Date: Wed, 27 Sep 2023 05:35:04 -0400 Subject: [PATCH] Fix dumb typo --- shroom_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shroom_controller.py b/shroom_controller.py index 0599e6f..e566ef8 100644 --- a/shroom_controller.py +++ b/shroom_controller.py @@ -253,7 +253,7 @@ class Controller: if humidifier2.on: self.toggle_checked(humidifier2, s) -humidifier = HumidifierV2(b"h", "humdifier") +humidifier = HumidifierV2(b"h", "humidifier") humidifier2 = HumidifierV2() controller = Controller()