Fix *args-like type annot

graceful_gather
Tyler Goodlet 2021-10-05 19:50:09 -04:00
parent 9ddd75733c
commit c372367cc2
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]: