Skip to content

Commit

Permalink
fix: adjust typing for async_setup (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 authored Nov 1, 2024
1 parent 67789a4 commit a48ca2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/openei/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import openeihttp
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import Config, HomeAssistant
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import ConfigEntryNotReady
from homeassistant.helpers.event import async_call_later
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
Expand All @@ -28,7 +28,7 @@


async def async_setup( # pylint: disable-next=unused-argument
hass: HomeAssistant, config: Config
hass: HomeAssistant, config: ConfigEntry
):
"""Set up this integration using YAML is not supported."""
return True
Expand Down

0 comments on commit a48ca2b

Please sign in to comment.