Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
skweeker committed Dec 24, 2024
1 parent 288f091 commit 06e5b3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions custom_components/calendarific/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import voluptuous as vol

from homeassistant.config_entries import ConfigEntry
from homeassistant.helpers.typing import HomeAssistantType
import homeassistant.core.HomeAssistant

from homeassistant import config_entries
import homeassistant.helpers.config_validation as cv
Expand Down Expand Up @@ -53,7 +53,7 @@ def setup(hass, config):
return True


async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry):
async def async_setup_entry(hass, entry: ConfigEntry):
hass.async_create_task(
hass.config_entries.async_forward_entry_setup(entry, "sensor")
)
Expand Down
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"zip_release": true,
"filename": "calendarific.zip",
"domains": ["calendarific", "sensor"],
"homeassistant": "2021.12.0",
"homeassistant": "2024.4.0",
"iot_class": "Cloud Polling"
}

0 comments on commit 06e5b3b

Please sign in to comment.