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__)