mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2025-04-03 08:15:30 +08:00
format: code style
This commit is contained in:
parent
603594144f
commit
e25a86eee7
@ -550,8 +550,9 @@ class MIoTDevice:
|
|||||||
# Optional actions
|
# Optional actions
|
||||||
# Optional events
|
# Optional events
|
||||||
miot_service.platform = platform
|
miot_service.platform = platform
|
||||||
# entity_category:
|
# entity_category
|
||||||
if entity_category := SPEC_SERVICE_TRANS_MAP[service_name].get('entity_category'):
|
if entity_category := SPEC_SERVICE_TRANS_MAP[service_name].get(
|
||||||
|
'entity_category', None):
|
||||||
miot_service.entity_category = entity_category
|
miot_service.entity_category = entity_category
|
||||||
return entity_data
|
return entity_data
|
||||||
|
|
||||||
|
@ -465,7 +465,7 @@ class _MIoTSpecBase:
|
|||||||
iid: int
|
iid: int
|
||||||
type_: str
|
type_: str
|
||||||
description: str
|
description: str
|
||||||
description_trans: str
|
description_trans: Optional[str]
|
||||||
proprietary: bool
|
proprietary: bool
|
||||||
need_filter: bool
|
need_filter: bool
|
||||||
name: str
|
name: str
|
||||||
@ -476,7 +476,7 @@ class _MIoTSpecBase:
|
|||||||
device_class: Any
|
device_class: Any
|
||||||
state_class: Any
|
state_class: Any
|
||||||
external_unit: Any
|
external_unit: Any
|
||||||
entity_category: str | None
|
entity_category: Optional[str]
|
||||||
|
|
||||||
spec_id: int
|
spec_id: int
|
||||||
|
|
||||||
|
@ -332,7 +332,7 @@ SPEC_DEVICE_TRANS_MAP: dict = {
|
|||||||
'actions': set<action instance name: str>
|
'actions': set<action instance name: str>
|
||||||
},
|
},
|
||||||
'entity': str,
|
'entity': str,
|
||||||
'entity_category'?: str,
|
'entity_category'?: str
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
@ -365,7 +365,7 @@ SPEC_SERVICE_TRANS_MAP: dict = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
'entity': 'light',
|
'entity': 'light',
|
||||||
'entity_category': EntityCategory.CONFIG,
|
'entity_category': EntityCategory.CONFIG
|
||||||
},
|
},
|
||||||
'fan': {
|
'fan': {
|
||||||
'required': {
|
'required': {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user