Skip to content

Commit

Permalink
Bump aiohttp, add languages (#69)
Browse files Browse the repository at this point in the history
Signed-off-by: Ludy87 <Ludy87@users.noreply.github.com>
  • Loading branch information
Ludy87 authored Dec 8, 2023
1 parent f1b38f3 commit cca0beb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
7 changes: 1 addition & 6 deletions custom_components/ipv64/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,7 @@
_LOGGER = logging.getLogger(__name__)


CONFIG_SCHEMA = vol.Schema(
{
DOMAIN: vol.Schema(DATA_SCHEMA),
},
extra=vol.ALLOW_EXTRA,
)
CONFIG_SCHEMA = vol.Schema({DOMAIN: vol.Schema(DATA_SCHEMA)}, extra=vol.ALLOW_EXTRA)


async def async_setup(hass: HomeAssistant, hass_config: ConfigType) -> bool:
Expand Down
4 changes: 2 additions & 2 deletions custom_components/ipv64/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"integration_type": "device",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/Ludy87/ipv64/issues",
"requirements": ["aiohttp==3.8.5", "async-timeout==4.0.3"],
"version": "1.5.3"
"requirements": ["aiohttp==3.9.1", "async-timeout==4.0.3"],
"version": "1.6.0"
}
2 changes: 1 addition & 1 deletion custom_components/ipv64/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_DOMAIN, CONF_IP_ADDRESS
from homeassistant.core import HomeAssistant
from homeassistant.helpers.device_registry import DeviceInfo # Dev branch
from homeassistant.helpers.device_registry import DeviceInfo
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import StateType
Expand Down
4 changes: 3 additions & 1 deletion hacs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
"zip_release": true,
"country": [
"DE",
"PT",
"SK",
"US"
],
"render_readme": true,
"homeassistant": "2023.10.1",
"homeassistant": "2023.12.0",
"hacs": "1.33.0",
"filename": "ipv64.zip"
}

0 comments on commit cca0beb

Please sign in to comment.