Remove unused alexa code (#79100)

This commit is contained in:
Marc Mueller
2022-09-26 19:22:07 +02:00
committed by GitHub
parent de3be96bdb
commit ed812b5ee4
2 changed files with 0 additions and 10 deletions

View File

@@ -300,12 +300,6 @@ class AlexaEntity:
"""
raise NotImplementedError
def get_interface(self, capability) -> AlexaCapability:
"""Return the given AlexaInterface.
Raises _UnsupportedInterface.
"""
def interfaces(self) -> list[AlexaCapability]:
"""Return a list of supported interfaces.

View File

@@ -8,10 +8,6 @@ from homeassistant.exceptions import HomeAssistantError
from .const import API_TEMP_UNITS
class UnsupportedInterface(HomeAssistantError):
"""This entity does not support the requested Smart Home API interface."""
class UnsupportedProperty(HomeAssistantError):
"""This entity does not support the requested Smart Home API property."""