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

@ -2,7 +2,7 @@
from axis.event_stream import CLASS_OUTPUT
from homeassistant.components.switch import SwitchDevice
from homeassistant.components.switch import SwitchEntity
from homeassistant.core import callback
from homeassistant.helpers.dispatcher import async_dispatcher_connect
@ -27,7 +27,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
)
class AxisSwitch(AxisEventBase, SwitchDevice):
class AxisSwitch(AxisEventBase, SwitchEntity):
"""Representation of a Axis switch."""
@property