X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=smart_future.py;h=460dcb95862a9a88ecafde45fa8886dbcbb9eaa1;hb=f135ec7ae3d7ca347d7489eb28d30b5db98f49de;hp=1f6e6f0aedcf05966e536ec8f10f570c2175a3e4;hpb=a4bf4d05230474ad14243d67ac7f8c938f670e58;p=python_utils.git diff --git a/smart_future.py b/smart_future.py index 1f6e6f0..460dcb9 100644 --- a/smart_future.py +++ b/smart_future.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 from __future__ import annotations + import concurrent import concurrent.futures as fut import logging @@ -9,10 +10,11 @@ from typing import Callable, List, Set, TypeVar from overrides import overrides +import id_generator + # This module is commonly used by others in here and should avoid # taking any unnecessary dependencies back on them. from deferred_operand import DeferredOperand -import id_generator logger = logging.getLogger(__name__)