Skip to content

Commit

Permalink
Fix Tailwind config entry typing in async_unload_entry signature (hom…
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Dec 13, 2024
1 parent 1fbe880 commit a812b59
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions homeassistant/components/tailwind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from __future__ import annotations

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from homeassistant.helpers import device_registry as dr
Expand Down Expand Up @@ -38,6 +37,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: TailwindConfigEntry) ->
return True


async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
async def async_unload_entry(hass: HomeAssistant, entry: TailwindConfigEntry) -> bool:
"""Unload Tailwind config entry."""
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)

0 comments on commit a812b59

Please sign in to comment.