Skip to content

Commit

Permalink
Merge pull request #651 from rccoleman/patch-2
Browse files Browse the repository at this point in the history
Fix import of Config for HA 2024.11.0b0
  • Loading branch information
craigbarratt authored Jan 8, 2025
2 parents 59b2011 + 9931d1e commit 60956f0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions custom_components/pyscript/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
EVENT_STATE_CHANGED,
SERVICE_RELOAD,
)
from homeassistant.core import Config, Event as HAEvent, HomeAssistant, ServiceCall
from homeassistant.core import Event as HAEvent, HomeAssistant, ServiceCall
from homeassistant.helpers.typing import ConfigType
from homeassistant.exceptions import HomeAssistantError
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.restore_state import DATA_RESTORE_STATE
Expand Down Expand Up @@ -64,7 +65,7 @@
CONFIG_SCHEMA = vol.Schema({DOMAIN: PYSCRIPT_SCHEMA}, extra=vol.ALLOW_EXTRA)


async def async_setup(hass: HomeAssistant, config: Config) -> bool:
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
"""Component setup, run import config flow for each entry in config."""
await restore_state(hass)
if DOMAIN in config:
Expand Down

0 comments on commit 60956f0

Please sign in to comment.