mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 01:07:10 +00:00
Add documentation URL for homeassistant_sky_connect (#99377)
This commit is contained in:
parent
0fd9327c46
commit
35560e01b9
@ -6,6 +6,7 @@ from homeassistant.core import HomeAssistant, callback
|
||||
|
||||
from .const import DOMAIN
|
||||
|
||||
DOCUMENTATION_URL = "https://skyconnect.home-assistant.io/documentation/"
|
||||
DONGLE_NAME = "Home Assistant SkyConnect"
|
||||
|
||||
|
||||
@ -26,7 +27,7 @@ def async_info(hass: HomeAssistant) -> list[HardwareInfo]:
|
||||
description=entry.data["description"],
|
||||
),
|
||||
name=DONGLE_NAME,
|
||||
url=None,
|
||||
url=DOCUMENTATION_URL,
|
||||
)
|
||||
for entry in entries
|
||||
]
|
||||
|
@ -78,7 +78,7 @@ async def test_hardware_info(
|
||||
"description": "bla_description",
|
||||
},
|
||||
"name": "Home Assistant SkyConnect",
|
||||
"url": None,
|
||||
"url": "https://skyconnect.home-assistant.io/documentation/",
|
||||
},
|
||||
{
|
||||
"board": None,
|
||||
@ -91,7 +91,7 @@ async def test_hardware_info(
|
||||
"description": "bla_description_2",
|
||||
},
|
||||
"name": "Home Assistant SkyConnect",
|
||||
"url": None,
|
||||
"url": "https://skyconnect.home-assistant.io/documentation/",
|
||||
},
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user