Fix invalid tuple annotations (#116035)

This commit is contained in:
Marc Mueller
2024-04-23 16:02:16 +02:00
committed by GitHub
parent d367bc63f0
commit a0314cddd4
5 changed files with 11 additions and 11 deletions

View File

@ -102,7 +102,7 @@ def test_template_message(arg: str | Exception, expected: str) -> None:
)
async def test_home_assistant_error(
hass: HomeAssistant,
exception_args: tuple[Any,],
exception_args: tuple[Any, ...],
exception_kwargs: dict[str, Any],
args_base_class: tuple[Any],
message: str,