Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔨 Update hacs.json file by <github-actions[bot]> #161

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions custom_components/ipv64/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@

import logging

import voluptuous as vol

from homeassistant import config_entries
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant, ServiceCall
from homeassistant.helpers.typing import ConfigType
import voluptuous as vol

from .const import DATA_HASS_CONFIG, DATA_SCHEMA, DOMAIN, SERVICE_REFRESH
from .coordinator import IPv64DataUpdateCoordinator
Expand Down
3 changes: 1 addition & 2 deletions custom_components/ipv64/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import logging

import aiohttp
import voluptuous as vol

from homeassistant import config_entries, core
from homeassistant.const import CONF_DOMAIN, CONF_SCAN_INTERVAL, CONF_TOKEN
from homeassistant.data_entry_flow import FlowResult
Expand All @@ -19,6 +17,7 @@
NumberSelectorConfig,
NumberSelectorMode,
)
import voluptuous as vol

from .const import (
CONF_API_ECONOMY,
Expand Down
3 changes: 1 addition & 2 deletions custom_components/ipv64/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

from typing import Final

import voluptuous as vol

from homeassistant.const import CONF_DOMAIN, CONF_SCAN_INTERVAL, CONF_TOKEN
from homeassistant.helpers.selector import (
BooleanSelector,
Expand All @@ -17,6 +15,7 @@
TextSelectorConfig,
TextSelectorType,
)
import voluptuous as vol

CONF_API_KEY: Final = "apikey"
CONF_API_ECONOMY: Final = "api_key_economy"
Expand Down
1 change: 0 additions & 1 deletion custom_components/ipv64/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import logging

import aiohttp

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import (
CONF_DOMAIN,
Expand Down
Loading