Add missing return type to some test functions (#119665)

This commit is contained in:
epenet
2024-06-14 08:26:45 +02:00
committed by GitHub
parent 26e21bb356
commit 38a6e666a7
15 changed files with 20 additions and 18 deletions

View File

@@ -287,7 +287,9 @@ async def test_async_initialize_triggers(
unsub()
async def test_pluggable_action(hass: HomeAssistant, service_calls: list[ServiceCall]):
async def test_pluggable_action(
hass: HomeAssistant, service_calls: list[ServiceCall]
) -> None:
"""Test normal behavior of pluggable actions."""
update_1 = MagicMock()
update_2 = MagicMock()