Skip to content

Commit d6cc0f8

Browse files
authored
Remove pointless super.async_added_to_hass in Tuya climate (home-assistant#156573)
1 parent f8ef8a4 commit d6cc0f8

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

homeassistant/components/tuya/climate.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,10 +281,6 @@ def __init__(
281281
ClimateEntityFeature.TURN_OFF | ClimateEntityFeature.TURN_ON
282282
)
283283

284-
async def async_added_to_hass(self) -> None:
285-
"""Call when entity is added to hass."""
286-
await super().async_added_to_hass()
287-
288284
def set_hvac_mode(self, hvac_mode: HVACMode) -> None:
289285
"""Set new target hvac mode."""
290286
commands = [{"code": DPCode.SWITCH, "value": hvac_mode != HVACMode.OFF}]

0 commit comments

Comments
 (0)