From 11b35e6e52b4bafb1db6c2e78fa0f7311cad13e8 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Tue, 13 Feb 2024 10:43:57 -0500 Subject: [PATCH] fix: broken import (#122) --- a_sync/utils/gather.py | 1 + 1 file changed, 1 insertion(+) diff --git a/a_sync/utils/gather.py b/a_sync/utils/gather.py index 75bc8143..08b13ebe 100644 --- a/a_sync/utils/gather.py +++ b/a_sync/utils/gather.py @@ -10,6 +10,7 @@ class tqdm_asyncio: # type: ignore [no-redef] async def gather(*args, **kwargs): raise ImportError("You must have tqdm installed in order to use this feature") +from a_sync._typing import * from a_sync.utils.as_completed import as_completed_mapping T = TypeVar('T')