removed async_added/removed_to_hass override

This commit is contained in:
Tomaae 2023-08-09 02:24:20 +02:00
parent a21e95c36a
commit 009d8c6085
No known key found for this signature in database
GPG key ID: 2F97770867DAA4E6

View file

@ -284,14 +284,6 @@ class MikrotikEntity(CoordinatorEntity[MikrotikCoordinator], Entity):
return attributes return attributes
async def async_added_to_hass(self) -> None:
"""Run when entity about to be added to hass"""
_LOGGER.debug("New entity %s (%s)", self._inst, self.unique_id)
async def async_will_remove_from_hass(self) -> None:
"""Run when entity about to be removed from hass"""
_LOGGER.debug("Removing entity %s (%s)", self._inst, self.unique_id)
async def start(self): async def start(self):
"""Dummy run function""" """Dummy run function"""
raise NotImplementedError() raise NotImplementedError()