From 8300d5b89e621b0905c4db3a7949e89f45b7c872 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 23 Jul 2022 12:59:35 -0500 Subject: [PATCH] Add bluetooth connection constant to the device registry (#75666) --- homeassistant/helpers/device_registry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/helpers/device_registry.py b/homeassistant/helpers/device_registry.py index a19f476495a..f133eba8f92 100644 --- a/homeassistant/helpers/device_registry.py +++ b/homeassistant/helpers/device_registry.py @@ -38,6 +38,7 @@ STORAGE_VERSION_MINOR = 3 SAVE_DELAY = 10 CLEANUP_DELAY = 10 +CONNECTION_BLUETOOTH = "bluetooth" CONNECTION_NETWORK_MAC = "mac" CONNECTION_UPNP = "upnp" CONNECTION_ZIGBEE = "zigbee"