Remove __all__ from switch_as_x (#146331)

* Remove `__all__` from switch_as_x

* Update homeassistant/components/switch_as_x/__init__.py
This commit is contained in:
Joost Lekkerkerker 2025-06-10 14:21:01 +02:00 committed by GitHub
parent c32a988838
commit 4fdbb9c0e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,9 +14,6 @@ from homeassistant.helpers import device_registry as dr, entity_registry as er
from homeassistant.helpers.event import async_track_entity_registry_updated_event
from .const import CONF_INVERT, CONF_TARGET_DOMAIN, DOMAIN
from .light import LightSwitch
__all__ = ["LightSwitch"]
_LOGGER = logging.getLogger(__name__)