Skip to content

Commit eb479cc

Browse files
committed
Fixes title and description for config flow.
1 parent a347ecb commit eb479cc

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

custom_components/hass_agent/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
110110
},
111111
)
112112

113-
print(entry.options)
114-
115113
url = entry.data.get(CONF_URL, None)
116114

117115
if url is not None:

custom_components/hass_agent/translations/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"description": "Do you want to start set up?"
1313
},
1414
"local_api": {
15-
"description": "",
15+
"title": "HASS.Agent",
16+
"description": "This adds the device to HA using the local api. Currently ONLY notifications will work. Add the device using the auto discovery if you want media_player.",
1617
"data": {
1718
"host": "Host",
1819
"port": "Port",

custom_components/hass_agent/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ async def get(
2424
request: web.Request,
2525
**kwargs: Any,
2626
) -> web.Response:
27-
print(kwargs)
2827

2928
media_player = kwargs["media_player"]
3029

0 commit comments

Comments
 (0)