Skip to content

Commit c772af7

Browse files
committed
Fix break after lint fixes
1 parent db22c70 commit c772af7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

custom_components/victron_mqtt/hub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, hass: HomeAssistant, entry: ConfigEntry) -> None:
7575
excluded_device_types: list[DeviceType] = [
7676
dt
7777
for device_string in excluded_device_strings
78-
if (dt := DeviceType.from_code(device_string)) is not None
78+
if (dt := DeviceType.from_device_code(device_string)) is not None
7979
]
8080

8181
_LOGGER.info(

custom_components/victron_mqtt/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
"X_MqttOnLan": "1"
1919
}
2020
],
21-
"version": "2026.1.1"
21+
"version": "2026.1.2"
2222
}

0 commit comments

Comments
 (0)