Improve type hints in tasmota tests (#123913)

This commit is contained in:
epenet 2024-08-14 14:56:03 +02:00 committed by GitHub
parent f6cb28eb5b
commit ccde51da85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,7 @@ from homeassistant.components.tasmota.const import (
DEFAULT_PREFIX,
DOMAIN,
)
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
from tests.components.light.conftest import mock_light_profiles # noqa: F401
@ -55,6 +56,6 @@ async def setup_tasmota_helper(hass):
@pytest.fixture
async def setup_tasmota(hass):
async def setup_tasmota(hass: HomeAssistant) -> None:
"""Set up Tasmota."""
await setup_tasmota_helper(hass)