Rename SwitchDevice to SwitchEntity (#34673)

This commit is contained in:
Erik Montnemery 2020-04-26 18:50:37 +02:00 committed by GitHub
parent e4333a7a44
commit 066e921a8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
121 changed files with 273 additions and 251 deletions

View file

@ -1,5 +1,5 @@
"""Demo platform that has two fake switches."""
from homeassistant.components.switch import SwitchDevice
from homeassistant.components.switch import SwitchEntity
from homeassistant.const import DEVICE_DEFAULT_NAME
from . import DOMAIN
@ -27,7 +27,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
await async_setup_platform(hass, {}, async_add_entities)
class DemoSwitch(SwitchDevice):
class DemoSwitch(SwitchEntity):
"""Representation of a demo switch."""
def __init__(self, unique_id, name, state, icon, assumed, device_class=None):