consistent naming, version bump

This commit is contained in:
bittles
2023-01-04 14:52:22 -05:00
parent ba74994156
commit ae549af6e8
5 changed files with 6 additions and 8 deletions
+3 -4
View File
@@ -13,15 +13,14 @@ from homeassistant.const import (
) )
from homeassistant.core import HomeAssistant from homeassistant.core import HomeAssistant
from homeassistant.helpers import discovery from homeassistant.helpers import discovery
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.typing import ConfigType from homeassistant.helpers.typing import ConfigType
import homeassistant.helpers.config_validation as cv
import voluptuous as vol import voluptuous as vol
#just included the modified sucks in component #use local sucks
from .sucksbumper import EcoVacsAPI, VacBot from .sucks import EcoVacsAPI, VacBot
from .const import ( from .const import (
ECOVACS_DEVICES, ECOVACS_DEVICES,
DOMAIN, DOMAIN,
CONF_CONTINENT, CONF_CONTINENT,
LOGGER LOGGER
) )
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"domain": "ecovacs", "domain": "ecovacs",
"name": "Ecovacs Bumper", "name": "Ecovacs Bumper",
"version": "1.3.7", "version": "1.4.0",
"documentation": "https://github.com/bittles/ha_ecovacs_bumper", "documentation": "https://github.com/bittles/ha_ecovacs_bumper",
"issue_tracker": "https://github.com/bittles/ha_ecovacs_bumper/issues", "issue_tracker": "https://github.com/bittles/ha_ecovacs_bumper/issues",
"requirements": ["sleekxmppfs==1.4.1", "requests>=2.18", "pycryptodome>=3.4", "pycountry-convert>=0.5", "paho-mqtt>=1.4", "stringcase>=1.2"], "requirements": ["sleekxmppfs==1.4.1", "requests>=2.18", "pycryptodome>=3.4", "pycountry-convert>=0.5", "paho-mqtt>=1.4", "stringcase>=1.2"],
@@ -7,8 +7,8 @@ from collections import OrderedDict
from sleekxmppfs.xmlstream import ET from sleekxmppfs.xmlstream import ET
from sleekxmppfs.exceptions import XMPPError from sleekxmppfs.exceptions import XMPPError
from .mqtt_ecovacs import EcoVacsIOTMQ from .sucks_mqtt import EcoVacsIOTMQ
from .xmpp_ecovacs import EcoVacsXMPP from .sucks_xmpp import EcoVacsXMPP
from .const import LOGGER from .const import LOGGER
from .sucks_const import * from .sucks_const import *
@@ -1,5 +1,4 @@
import time import time
import sched import sched
import threading import threading
import ssl import ssl