diff --git a/tests/components/blueprint/common.py b/tests/components/blueprint/common.py index f1ccf63b26a..45c6a94f401 100644 --- a/tests/components/blueprint/common.py +++ b/tests/components/blueprint/common.py @@ -1,11 +1,10 @@ """Blueprints test helpers.""" from collections.abc import Generator -from typing import Any from unittest.mock import patch -def stub_blueprint_populate_fixture_helper() -> Generator[None, Any, None]: +def stub_blueprint_populate_fixture_helper() -> Generator[None, None, None]: """Stub copying the blueprints to the config folder.""" with patch( "homeassistant.components.blueprint.models.DomainBlueprints.async_populate" diff --git a/tests/components/conftest.py b/tests/components/conftest.py index 5e480383513..8bbb3b83c22 100644 --- a/tests/components/conftest.py +++ b/tests/components/conftest.py @@ -50,7 +50,7 @@ def entity_registry_enabled_by_default() -> Generator[None, None, None]: # Blueprint test fixtures @pytest.fixture(name="stub_blueprint_populate") -def stub_blueprint_populate_fixture() -> Generator[None, Any, None]: +def stub_blueprint_populate_fixture() -> Generator[None, None, None]: """Stub copying the blueprints to the config folder.""" from tests.components.blueprint.common import stub_blueprint_populate_fixture_helper