"""The MyQ integration.""" from __future__ import annotations from homeassistant.config_entries import ConfigEntry, ConfigEntryState from homeassistant.core import HomeAssistant from homeassistant.helpers import issue_registry as ir DOMAIN = "myq" async def async_setup_entry(hass: HomeAssistant, _: ConfigEntry) -> bool: """Set up MyQ from a config entry.""" ir.async_create_issue( hass, DOMAIN, DOMAIN, is_fixable=False, severity=ir.IssueSeverity.ERROR, translation_key="integration_removed", translation_placeholders={ "blog": "https://www.home-assistant.io/blog/2023/11/06/removal-of-myq-integration/", "entries": "/config/integrations/integration/myQ", }, ) return True async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Unload a config entry.""" if all( config_entry.state is ConfigEntryState.NOT_LOADED for config_entry in hass.config_entries.async_entries(DOMAIN) if config_entry.entry_id != entry.entry_id ): ir.async_delete_issue(hass, DOMAIN, DOMAIN) return True