From 4fdbb9c0e289d116cb6c33b20561f181028f6080 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Tue, 10 Jun 2025 14:21:01 +0200 Subject: [PATCH] Remove `__all__` from switch_as_x (#146331) * Remove `__all__` from switch_as_x * Update homeassistant/components/switch_as_x/__init__.py --- homeassistant/components/switch_as_x/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/switch_as_x/__init__.py b/homeassistant/components/switch_as_x/__init__.py index 9e40a99299a..2bc0710d08f 100644 --- a/homeassistant/components/switch_as_x/__init__.py +++ b/homeassistant/components/switch_as_x/__init__.py @@ -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__)