mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 02:49:40 +00:00
Add missing return type to some test functions (#119665)
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user