Skip to content

Commit

Permalink
Fix incorrect entity category for SmartThings sensors (#92232)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Apr 30, 2023
1 parent ed3c1d9 commit 3363830
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions homeassistant/components/smartthings/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.air_conditioner_mode: [
Expand All @@ -55,7 +55,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.air_quality_sensor: [
Expand Down Expand Up @@ -160,7 +160,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.dryer_operating_state: [
Expand Down Expand Up @@ -303,7 +303,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.oven_operating_state: [
Expand Down Expand Up @@ -362,7 +362,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.robot_cleaner_movement: [
Expand All @@ -382,7 +382,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.signal_strength: [
Expand Down Expand Up @@ -433,7 +433,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.thermostat_heating_setpoint: [
Expand All @@ -443,7 +443,7 @@
None,
SensorDeviceClass.TEMPERATURE,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.thermostat_mode: [
Expand All @@ -453,7 +453,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.thermostat_operating_state: [
Expand All @@ -473,7 +473,7 @@
None,
SensorDeviceClass.TEMPERATURE,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.three_axis: [],
Expand Down Expand Up @@ -518,7 +518,7 @@
None,
None,
None,
EntityCategory.CONFIG,
EntityCategory.DIAGNOSTIC,
)
],
Capability.washer_operating_state: [
Expand Down

0 comments on commit 3363830

Please sign in to comment.