Fix *args-like type annot

zombie_lord_infinite
Tyler Goodlet 2021-10-05 19:50:09 -04:00
parent 38b844fb22
commit c7e03ae3b4
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ async def _enter_and_sleep(
@acm
async def async_enter_all(
*mngrs: list[AsyncContextManager[T]],
*mngrs: tuple[AsyncContextManager[T]],
) -> tuple[T]: