File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ class HomeAssistantInfo(ResponseData):
2323 port : int
2424 ssl : bool
2525 watchdog : bool
26- audio_input : str
27- audio_output : str
26+ audio_input : str | None
27+ audio_output : str | None
2828 backups_exclude_database : bool
2929
3030
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ version = "0.0.0"
2424dev = [
2525 # Production requirements
2626 " aiohttp==3.11.16" ,
27- " mashumaro==3.13.1 " ,
27+ " mashumaro==3.15 " ,
2828 " orjson==3.10.16" ,
2929
3030 # Test requirements
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ async def test_homeassistant_info(
3535 assert info .arch == "aarch64"
3636 assert info .ssl is False
3737 assert info .port == 8123
38+ assert info .audio_input is None
3839 assert info .audio_output is None
3940 assert info .ip_address == IPv4Address ("172.30.32.1" )
4041
You can’t perform that action at this time.
0 commit comments