Add missing argument type to core tests (#119667)

This commit is contained in:
epenet
2024-06-14 08:42:01 +02:00
committed by GitHub
parent f3ce562847
commit 9f41133bbc
7 changed files with 23 additions and 17 deletions

View File

@@ -1601,7 +1601,7 @@ async def test_translation_key(hass: HomeAssistant) -> None:
assert mock_entity2.translation_key == "from_entity_description"
async def test_repr(hass) -> None:
async def test_repr(hass: HomeAssistant) -> None:
"""Test Entity.__repr__."""
class MyEntity(MockEntity):