mirror of
https://github.com/home-assistant/core.git
synced 2025-05-09 16:39:22 +00:00

* Unused pylint suppression cleanups * Remove outdated pylint bug references * Add flake8-noqa config and note to run it every now and then * Add codes to noqa's * Unused noqa cleanups
20 lines
559 B
Python
20 lines
559 B
Python
"""The blueprint integration."""
|
|
from . import websocket_api
|
|
from .const import DOMAIN # noqa: F401
|
|
from .errors import ( # noqa: F401
|
|
BlueprintException,
|
|
BlueprintWithNameException,
|
|
FailedToLoad,
|
|
InvalidBlueprint,
|
|
InvalidBlueprintInputs,
|
|
MissingInput,
|
|
)
|
|
from .models import Blueprint, BlueprintInputs, DomainBlueprints # noqa: F401
|
|
from .schemas import is_blueprint_instance_config # noqa: F401
|
|
|
|
|
|
async def async_setup(hass, config):
|
|
"""Set up the blueprint integration."""
|
|
websocket_api.async_setup(hass)
|
|
return True
|