File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616class UIClass (UnknownEnumMixin , StrEnum ):
1717 """Enumeration of UI classes used to describe device categories and behaviors."""
1818
19- UNKNOWN = "unknown "
19+ UNKNOWN = "Unknown "
2020
2121 ADJUSTABLE_SLATS_ROLLER_SHUTTER = "AdjustableSlatsRollerShutter"
2222 AIR_SENSOR = "AirSensor"
@@ -94,7 +94,7 @@ class UIClass(UnknownEnumMixin, StrEnum):
9494class UIWidget (UnknownEnumMixin , StrEnum ):
9595 """Enumeration of UI widgets used by Overkiz for device presentation."""
9696
97- UNKNOWN = "unknown "
97+ UNKNOWN = "Unknown "
9898
9999 AIR_FLOW_SENSOR = "AirFlowSensor"
100100 AIR_QUALITY_SENSOR = "AirQualitySensor"
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ def to_enum_name(value: str) -> str:
164164 "class UIClass(UnknownEnumMixin, StrEnum):" ,
165165 ' """Enumeration of UI classes used to describe device categories and behaviors."""' ,
166166 "" ,
167- ' UNKNOWN = "unknown "' ,
167+ ' UNKNOWN = "Unknown "' ,
168168 "" ,
169169 ]
170170
@@ -182,7 +182,7 @@ def to_enum_name(value: str) -> str:
182182 ' """Enumeration of UI widgets used by Overkiz for device presentation."""'
183183 )
184184 lines .append ("" )
185- lines .append (' UNKNOWN = "unknown "' )
185+ lines .append (' UNKNOWN = "Unknown "' )
186186 lines .append ("" )
187187
188188 # Add UI widgets
You can’t perform that action at this time.
0 commit comments