Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aiohasupervisor/models/homeassistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class HomeAssistantInfo(ResponseData):
port: int
ssl: bool
watchdog: bool
audio_input: str
audio_output: str
audio_input: str | None
audio_output: str | None
backups_exclude_database: bool


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ version = "0.0.0"
dev = [
# Production requirements
"aiohttp==3.11.16",
"mashumaro==3.13.1",
"mashumaro==3.15",
"orjson==3.10.16",

# Test requirements
Expand Down
1 change: 1 addition & 0 deletions tests/test_homeassistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ async def test_homeassistant_info(
assert info.arch == "aarch64"
assert info.ssl is False
assert info.port == 8123
assert info.audio_input is None
assert info.audio_output is None
assert info.ip_address == IPv4Address("172.30.32.1")

Expand Down