Adjust repairs re-exports (#75492)

pull/75501/head
Franck Nijhof 2022-07-20 14:00:35 +02:00 committed by GitHub
parent cd3e99564f
commit 3920844dca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

@ -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: