Merge branch 'main' into refactor

This commit is contained in:
Andre Basche
2023-06-22 13:18:45 +02:00
35 changed files with 847 additions and 127 deletions
+4 -2
View File
@@ -85,5 +85,7 @@ def get_coordinator(hass, appliance):
def get_readable(description, value):
with suppress(ValueError):
return description.option_list.get(int(value), value)
if description.option_list is not None:
with suppress(ValueError):
return description.option_list.get(int(value), value)
return value