mirror of
https://github.com/home-assistant/core.git
synced 2025-08-05 13:45:12 +02:00
Remove unused hass from EsphomeAssistSatelliteWakeWordSelect (#143618)
This commit is contained in:
@@ -52,7 +52,7 @@ async def async_setup_entry(
|
|||||||
[
|
[
|
||||||
EsphomeAssistPipelineSelect(hass, entry_data),
|
EsphomeAssistPipelineSelect(hass, entry_data),
|
||||||
EsphomeVadSensitivitySelect(hass, entry_data),
|
EsphomeVadSensitivitySelect(hass, entry_data),
|
||||||
EsphomeAssistSatelliteWakeWordSelect(hass, entry_data),
|
EsphomeAssistSatelliteWakeWordSelect(entry_data),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -111,7 +111,7 @@ class EsphomeAssistSatelliteWakeWordSelect(
|
|||||||
_attr_current_option: str | None = None
|
_attr_current_option: str | None = None
|
||||||
_attr_options: list[str] = []
|
_attr_options: list[str] = []
|
||||||
|
|
||||||
def __init__(self, hass: HomeAssistant, entry_data: RuntimeEntryData) -> None:
|
def __init__(self, entry_data: RuntimeEntryData) -> None:
|
||||||
"""Initialize a wake word selector."""
|
"""Initialize a wake word selector."""
|
||||||
EsphomeAssistEntity.__init__(self, entry_data)
|
EsphomeAssistEntity.__init__(self, entry_data)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user