async-exit-stack was for pre-py37, just import from contextlib now

This commit is contained in:
pacrob
2024-05-27 12:18:14 -06:00
committed by Paul Robinson
parent d9b92635c1
commit a3f8db3ecd
5 changed files with 6 additions and 10 deletions

View File

@ -1,4 +1,5 @@
from contextlib import (
AsyncExitStack,
asynccontextmanager,
)
from typing import (
@ -7,10 +8,6 @@ from typing import (
Tuple,
)
from async_exit_stack import (
AsyncExitStack,
)
from libp2p.host.host_interface import (
IHost,
)