summaryrefslogtreecommitdiff
path: root/taskflow/utils/threading_utils.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2013-12-30 14:40:42 -0800
committerIvan A. Melnikov <imelnikov@griddynamics.com>2014-01-09 17:58:32 +0400
commitcb0ebb9e6c64cfdfedc31b6f8ad9e6474d4e570e (patch)
tree14412564a5c03280549e5d43ed2d744cc8648c95 /taskflow/utils/threading_utils.py
parentd617864898ec40d89ca040836fdcfaf4d6d583c1 (diff)
downloadtaskflow-cb0ebb9e6c64cfdfedc31b6f8ad9e6474d4e570e.tar.gz
Move six to the right location
Third party imports are supposed to be after standard library imports so make six be after. Some newlines are also added to separate standard library imports from all the others. Co-authored-by: Ivan A. Melnikov <imelnikov@griddynamics.com> Change-Id: Ied067e9367612758666da726df195ed390215e1b
Diffstat (limited to 'taskflow/utils/threading_utils.py')
-rw-r--r--taskflow/utils/threading_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/taskflow/utils/threading_utils.py b/taskflow/utils/threading_utils.py
index bffd037..ee82af0 100644
--- a/taskflow/utils/threading_utils.py
+++ b/taskflow/utils/threading_utils.py
@@ -18,10 +18,11 @@
import logging
import multiprocessing
-import six
import threading
import types
+import six
+
from taskflow.utils import lock_utils
LOG = logging.getLogger(__name__)