Fix non conversion of dict_values to list

###Fix
* dict_values for sleep state now correctly converted to list
This commit is contained in:
RyanClark123
2023-05-17 19:32:27 +01:00
parent bd6a315b00
commit dc58b19a46
+1 -1
View File
@@ -170,4 +170,4 @@ class OwletSleepStateSensor(OwletBaseEntity, SensorEntity):
@property @property
def options(self) -> list[str]: def options(self) -> list[str]:
return SLEEP_STATES.values() return list(SLEEP_STATES.values())