diff --git a/airthings_ble/__init__.py b/airthings_ble/__init__.py index 603b18c..3632061 100644 --- a/airthings_ble/__init__.py +++ b/airthings_ble/__init__.py @@ -2,8 +2,9 @@ from __future__ import annotations +from .device_type import AirthingsDeviceType from .parser import AirthingsBluetoothDeviceData, AirthingsDevice __version__ = "0.7.0" -__all__ = ["AirthingsBluetoothDeviceData", "AirthingsDevice"] +__all__ = ["AirthingsBluetoothDeviceData", "AirthingsDevice", "AirthingsDeviceType"]