Add type hints to integration tests (part 4) (#87848)
This commit is contained in:
parent
a385a00d08
commit
9f688a564f
52 changed files with 733 additions and 336 deletions
|
@ -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")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue