mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Fix incorrect entity category for huawei_lte sensors (#92235)
This commit is contained in:
parent
a5044227a8
commit
ed3c1d9b59
@ -574,7 +574,7 @@ SENSOR_META: dict[str, HuaweiSensorGroup] = {
|
|||||||
{"0": "Auto", "1": "Manual"}.get(x),
|
{"0": "Auto", "1": "Manual"}.get(x),
|
||||||
None,
|
None,
|
||||||
),
|
),
|
||||||
entity_category=EntityCategory.CONFIG,
|
entity_category=EntityCategory.DIAGNOSTIC,
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
@ -596,7 +596,7 @@ SENSOR_META: dict[str, HuaweiSensorGroup] = {
|
|||||||
}.get(x),
|
}.get(x),
|
||||||
None,
|
None,
|
||||||
),
|
),
|
||||||
entity_category=EntityCategory.CONFIG,
|
entity_category=EntityCategory.DIAGNOSTIC,
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user