Skip to content

Commit

Permalink
Help?
Browse files Browse the repository at this point in the history
  • Loading branch information
aunefyren committed Feb 4, 2024
1 parent ef97114 commit 811d283
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion custom_components/bluesound_alt/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import voluptuous as vol

from homeassistant import config_entries, exceptions
from homeassistant import data_entry_flow
from homeassistant.core import HomeAssistant
from homeassistant.const import (
CONF_HOST,
Expand Down Expand Up @@ -79,7 +80,7 @@ async def validate_input(hass: HomeAssistant, data: dict) -> dict[str, Any]:
return {"title": data["host"]}


class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
class ConfigFlow(data_entry_flow.FlowHandler):
"""Handle a config flow for Hello World."""

VERSION = 1
Expand Down
2 changes: 1 addition & 1 deletion custom_components/bluesound_alt/const.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Constants for the Bluesound HiFi wireless speakers and audio integrations component."""
DOMAIN = "bluesound"
DOMAIN = "bluesound_alt"
SERVICE_CLEAR_TIMER = "clear_sleep_timer"
SERVICE_JOIN = "join"
SERVICE_SET_TIMER = "set_sleep_timer"
Expand Down

0 comments on commit 811d283

Please sign in to comment.