diff --git a/custom_components/victron_ble/manifest.json b/custom_components/victron_ble/manifest.json index 519aee5..e17b6a5 100644 --- a/custom_components/victron_ble/manifest.json +++ b/custom_components/victron_ble/manifest.json @@ -14,6 +14,6 @@ "integration_type": "device", "iot_class": "local_push", "issue_tracker": "https://github.com/keshavdv/victron-hacs/issues", - "requirements": ["git+https://github.com/j9brown/victron-ble.git@main#victron_ble==0.8.1"], - "version": "0.1.10" + "requirements": ["git+https://github.com/j9brown/victron-ble.git@main#victron_ble==0.8.2"], + "version": "0.1.11" } diff --git a/custom_components/victron_ble/sensor.py b/custom_components/victron_ble/sensor.py index 2d51e27..4fa3316 100644 --- a/custom_components/victron_ble/sensor.py +++ b/custom_components/victron_ble/sensor.py @@ -281,7 +281,7 @@ async def async_setup_entry( class VictronBluetoothSensorEntity( PassiveBluetoothProcessorEntity[ - PassiveBluetoothDataProcessor[Optional[Union[float, int]]] + PassiveBluetoothDataProcessor[float | int | None, SensorUpdate], ], SensorEntity, ):