1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-02-14 23:19:37 +00:00

Add missing BRIDGE device type to NetworkManager enum (#6567)

NMDeviceType 13 (NM_DEVICE_TYPE_BRIDGE) was not listed in the
DeviceType enum, causing a warning when NetworkManager reported
a bridge interface.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Stefan Agner
2026-02-13 16:25:15 +01:00
committed by GitHub
parent 50e6c88237
commit 00f2578d61

View File

@@ -306,6 +306,7 @@ class DeviceType(DBusIntEnum):
WIRELESS = 2
BLUETOOTH = 5
VLAN = 11
BRIDGE = 13
TUN = 16
VETH = 20
WIREGUARD = 29