Update pystiebeleltron to 0.7.0 (#179268)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Balloob Bot
2026-08-16 21:13:54 +03:00
committed by GitHub
co-authored by Paulus Schoutsen Claude Opus 5
parent c76bf25c55
commit b9f0b1961e
3 changed files with 3 additions and 3 deletions
@@ -13,5 +13,5 @@
"iot_class": "local_polling",
"loggers": ["pymodbus", "pystiebeleltron"],
"quality_scale": "silver",
"requirements": ["pystiebeleltron==0.6.3"]
"requirements": ["pystiebeleltron==0.7.0"]
}
+1 -1
View File
@@ -2626,7 +2626,7 @@ pyspeex-noise==1.0.2
pysqueezebox==0.14.0
# homeassistant.components.stiebel_eltron
pystiebeleltron==0.6.3
pystiebeleltron==0.7.0
# homeassistant.components.suez_water
pysuezV2==2.0.7
+1 -1
View File
@@ -36,7 +36,7 @@ async def mock_connect_tcp(
mock_modbus_connection: MockModbusConnection,
) -> AsyncGenerator[AsyncMock]:
"""Patch connect_tcp to return the in-memory mock connection."""
assert mock_modbus_connection.connected
await mock_modbus_connection.connect()
connect = AsyncMock(return_value=mock_modbus_connection)
with (
patch("homeassistant.components.stiebel_eltron.connect_tcp", new=connect),