Skip to content

Commit 2ba5728

Browse files
authored
Enable Shelly binary input sensors by default (home-assistant#154001)
1 parent b5f163c commit 2ba5728

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

homeassistant/components/shelly/binary_sensor.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,21 +157,18 @@ def __init__(
157157
key="input|input",
158158
name="Input",
159159
device_class=BinarySensorDeviceClass.POWER,
160-
entity_registry_enabled_default=False,
161160
removal_condition=is_block_momentary_input,
162161
),
163162
("relay", "input"): BlockBinarySensorDescription(
164163
key="relay|input",
165164
name="Input",
166165
device_class=BinarySensorDeviceClass.POWER,
167-
entity_registry_enabled_default=False,
168166
removal_condition=is_block_momentary_input,
169167
),
170168
("device", "input"): BlockBinarySensorDescription(
171169
key="device|input",
172170
name="Input",
173171
device_class=BinarySensorDeviceClass.POWER,
174-
entity_registry_enabled_default=False,
175172
removal_condition=is_block_momentary_input,
176173
),
177174
("sensor", "extInput"): BlockBinarySensorDescription(
@@ -201,7 +198,6 @@ def __init__(
201198
key="input",
202199
sub_key="state",
203200
device_class=BinarySensorDeviceClass.POWER,
204-
entity_registry_enabled_default=False,
205201
removal_condition=is_rpc_momentary_input,
206202
),
207203
"cloud": RpcBinarySensorDescription(

0 commit comments

Comments
 (0)