Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
myTselection committed Nov 23, 2024
1 parent b91955d commit b979c58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions custom_components/pixometer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

from homeassistant import config_entries
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import Config, HomeAssistant
from homeassistant.core import HomeAssistant
from homeassistant.helpers.typing import ConfigType
from homeassistant.const import Platform
from .utils import *
from homeassistant.const import (
Expand Down Expand Up @@ -41,7 +42,7 @@
_LOGGER = logging.getLogger(__name__)


async def async_setup(hass: HomeAssistant, config: dict):
async def async_setup(hass: HomeAssistant, config: ConfigType):
"""Set up this component using YAML."""
_LOGGER.info(STARTUP)
if config.get(DOMAIN) is None:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/pixometer/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/myTselection/pixometer/issues",
"requirements": [],
"version": "2.1.4"
"version": "2.1.5"
}

0 comments on commit b979c58

Please sign in to comment.