diff --git a/homeassistant/components/repairs/__init__.py b/homeassistant/components/repairs/__init__.py index 5a85d1999d0..f9a478514aa 100644 --- a/homeassistant/components/repairs/__init__.py +++ b/homeassistant/components/repairs/__init__.py @@ -6,10 +6,17 @@ from homeassistant.helpers.typing import ConfigType from . import issue_handler, websocket_api from .const import DOMAIN -from .issue_handler import RepairsFlow, async_create_issue, async_delete_issue +from .issue_handler import async_create_issue, async_delete_issue from .issue_registry import async_load as async_load_issue_registry +from .models import IssueSeverity, RepairsFlow -__all__ = ["DOMAIN", "RepairsFlow", "async_create_issue", "async_delete_issue"] +__all__ = [ + "async_create_issue", + "async_delete_issue", + "DOMAIN", + "IssueSeverity", + "RepairsFlow", +] async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: