Skip to content

Commit

Permalink
Lint warning fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
faanskit committed Dec 28, 2023
1 parent 8fc463c commit 11b7f69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion custom_components/checkwatt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import random
from typing import TypedDict

from pycheckwatt import CheckwattManager

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME, Platform
from homeassistant.core import HomeAssistant
Expand All @@ -19,7 +21,6 @@
CONF_UPDATE_INTERVAL_FCRD,
DOMAIN,
)
from pycheckwatt import CheckwattManager

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion custom_components/checkwatt/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import logging
from typing import Any

from pycheckwatt import CheckwattManager
import voluptuous as vol

from homeassistant import config_entries
Expand All @@ -13,7 +14,6 @@
from homeassistant.exceptions import HomeAssistantError

from .const import CONF_DETAILED_ATTRIBUTES, CONF_DETAILED_SENSORS, DOMAIN
from pycheckwatt import CheckwattManager

CONF_TITLE = "CheckWatt"

Expand Down

0 comments on commit 11b7f69

Please sign in to comment.