We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 247900f commit 6475dffCopy full SHA for 6475dff
aiohasupervisor/models/homeassistant.py
@@ -23,8 +23,8 @@ class HomeAssistantInfo(ResponseData):
23
port: int
24
ssl: bool
25
watchdog: bool
26
- audio_input: str
27
- audio_output: str
+ audio_input: str | None
+ audio_output: str | None
28
backups_exclude_database: bool
29
30
tests/test_homeassistant.py
@@ -35,6 +35,7 @@ async def test_homeassistant_info(
35
assert info.arch == "aarch64"
36
assert info.ssl is False
37
assert info.port == 8123
38
+ assert info.audio_input is None
39
assert info.audio_output is None
40
assert info.ip_address == IPv4Address("172.30.32.1")
41
0 commit comments