Skip to content

Commit 776c6b7

Browse files
Bump mashumaro from 3.13.1 to 3.15 (#71)
* Bump mashumaro from 3.13.1 to 3.15 Bumps [mashumaro](https://github.com/Fatal1ty/mashumaro) from 3.13.1 to 3.15. - [Release notes](https://github.com/Fatal1ty/mashumaro/releases) - [Commits](Fatal1ty/mashumaro@v3.13.1...v3.15) --- updated-dependencies: - dependency-name: mashumaro dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Fix typing bug in homeassistant info model --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Degatano <[email protected]>
1 parent 8e33471 commit 776c6b7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

aiohasupervisor/models/homeassistant.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ version = "0.0.0"
2424
dev = [
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

tests/test_homeassistant.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)