From e00e0c1f3ed594f48069b09872271a3369c1c680 Mon Sep 17 00:00:00 2001 From: tolwi Date: Mon, 17 Jul 2023 16:21:45 +0300 Subject: [PATCH] v0.11.0 --- custom_components/ecoflow_cloud/manifest.json | 2 +- custom_components/ecoflow_cloud/mqtt/ecoflow_mqtt.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/custom_components/ecoflow_cloud/manifest.json b/custom_components/ecoflow_cloud/manifest.json index 8070030..ef06976 100644 --- a/custom_components/ecoflow_cloud/manifest.json +++ b/custom_components/ecoflow_cloud/manifest.json @@ -13,5 +13,5 @@ "reactivex==4.0.4", "protobuf>=4.23.0" ], - "version": "0.10.2" + "version": "0.11.0" } \ No newline at end of file diff --git a/custom_components/ecoflow_cloud/mqtt/ecoflow_mqtt.py b/custom_components/ecoflow_cloud/mqtt/ecoflow_mqtt.py index dc34f66..feb1827 100644 --- a/custom_components/ecoflow_cloud/mqtt/ecoflow_mqtt.py +++ b/custom_components/ecoflow_cloud/mqtt/ecoflow_mqtt.py @@ -14,14 +14,12 @@ from homeassistant.core import HomeAssistant, DOMAIN from homeassistant.helpers.entity import DeviceInfo from homeassistant.util import utcnow -from homeassistant.util.dt import UTC from reactivex import Subject, Observable +from .proto import powerstream_pb2 as powerstream, ecopacket_pb2 as ecopacket from .utils import BoundFifoList from ..config.const import CONF_DEVICE_TYPE, CONF_DEVICE_ID, OPTS_REFRESH_PERIOD_SEC, EcoflowModel -from .proto import powerstream_pb2 as powerstream, ecopacket_pb2 as ecopacket - _LOGGER = logging.getLogger(__name__)