Add type hints to integration tests (part 4) (#87848)

This commit is contained in:
epenet 2023-02-11 08:26:13 +01:00 committed by GitHub
parent a385a00d08
commit 9f688a564f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
52 changed files with 733 additions and 336 deletions

View file

@ -9,10 +9,11 @@ from homeassistant.const import (
STATE_OPEN,
STATE_OPENING,
)
from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component
async def test_services(hass, enable_custom_integrations):
async def test_services(hass: HomeAssistant, enable_custom_integrations: None) -> None:
"""Test the provided services."""
platform = getattr(hass.components, "test.cover")