1
mirror of https://github.com/home-assistant/core synced 2024-09-15 17:29:45 +02:00
ha-core/tests/testing_config/custom_components/test_package/__init__.py

10 lines
193 B
Python

"""Provide a mock package component."""
from .const import TEST # noqa: F401
DOMAIN = "test_package"
async def async_setup(hass, config):
"""Mock a successful setup."""
return True