From d48783e1a7c3a3a719fc7dca9f08feb034660507 Mon Sep 17 00:00:00 2001 From: Ernst Klamer Date: Thu, 8 Sep 2022 16:28:38 +0200 Subject: [PATCH] fix: add binary sensor device class --- src/bthome_ble/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/bthome_ble/__init__.py b/src/bthome_ble/__init__.py index 0dc3fe9..3975951 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -2,6 +2,7 @@ from __future__ import annotations from sensor_state_data import ( + BinarySensorDeviceClass, DeviceClass, DeviceKey, SensorDescription, @@ -17,12 +18,12 @@ __all__ = [ "BTHomeBluetoothDeviceData", - "SensorDescription", - "SensorDeviceInfo", + "BinarySensorDeviceClass", "DeviceClass", "DeviceKey", - "SensorUpdate", + "SensorDescription", "SensorDeviceInfo", + "SensorUpdate", "SensorValue", "Units", ]