From accc48a49eed3134894f22610e58232d2339311d Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 27 Jun 2025 20:55:18 +0200 Subject: [PATCH] Fix lint error --- homeassistant/core.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/core.py b/homeassistant/core.py index 155ff5b9a94..b0a8c159a05 100644 --- a/homeassistant/core.py +++ b/homeassistant/core.py @@ -2607,8 +2607,7 @@ class ServiceRegistry: This method must be run in the event loop. """ - # pylint: disable-next=import-outside-toplevel - from .helpers import config_validation as cv + from .helpers import config_validation as cv # noqa: PLC0415 cv.raise_on_templated_service(domain, service, schema) domain = domain.lower()