Add type hints to integration tests (m-p) (#87705)
This commit is contained in:
parent
6551eb168d
commit
3abf7ea18a
99 changed files with 637 additions and 438 deletions
|
@ -1,11 +1,11 @@
|
|||
"""The sensor tests for the nexia platform."""
|
||||
|
||||
from homeassistant.const import PERCENTAGE, UnitOfTemperature
|
||||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from .util import async_init_integration
|
||||
|
||||
|
||||
async def test_create_sensors(hass):
|
||||
async def test_create_sensors(hass: HomeAssistant) -> None:
|
||||
"""Test creation of sensors."""
|
||||
|
||||
await async_init_integration(hass)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue