Update const.py

###Fix
* Error in sleep states constant corrected
This commit is contained in:
ryanbdclark
2023-05-16 21:14:46 +01:00
committed by GitHub
parent 2b21188e73
commit fa06157fe2
+1 -1
View File
@@ -8,4 +8,4 @@ CONF_OWLET_REFRESH = "refresh"
SUPPORTED_VERSIONS = [3]
POLLING_INTERVAL = 5
MANUFACTURER = "Owlet Baby Care"
SLEEP_STATES = {1, "Awake", 8, "Light Sleep", 15, "Deep Sleep"}
SLEEP_STATES = {1: "Awake", 8: "Light Sleep", 15: "Deep Sleep"}