From 31c81f6539969a5eba864d3305f9fb7bf716a367 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 2 Feb 2022 12:13:27 -0800 Subject: Used isort to sort imports. Also added to the git pre-commit hook. --- smart_future.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'smart_future.py') 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__) -- cgit v1.3