Skip to content

Commit 17c5366

Browse files
committed
Add back in BLE models to master db
1 parent 7dfda37 commit 17c5366

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom_components/uniled/lib/models_db.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
from typing import Final
33
from .const import UNILED_TRANSPORT_NET, UNILED_TRANSPORT_BLE
44
from .net.models import UNILED_NET_MODELS
5-
#from .ble.models import UNILED_BLE_MODELS
5+
from .ble.models import UNILED_BLE_MODELS
66

77
##
88
## All Supported Models
99
##
1010
UNILED_MODELS: Final = {
1111
UNILED_TRANSPORT_NET: UNILED_NET_MODELS,
12-
#UNILED_TRANSPORT_BLE: UNILED_BLE_MODELS,
12+
UNILED_TRANSPORT_BLE: UNILED_BLE_MODELS,
1313
}

0 commit comments

Comments
 (0)