diff options
| author | Joshua Harlow <harlowja@yahoo-inc.com> | 2013-12-30 14:40:42 -0800 |
|---|---|---|
| committer | Ivan A. Melnikov <imelnikov@griddynamics.com> | 2014-01-09 17:58:32 +0400 |
| commit | cb0ebb9e6c64cfdfedc31b6f8ad9e6474d4e570e (patch) | |
| tree | 14412564a5c03280549e5d43ed2d744cc8648c95 /taskflow/tests/utils.py | |
| parent | d617864898ec40d89ca040836fdcfaf4d6d583c1 (diff) | |
| download | taskflow-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/tests/utils.py')
| -rw-r--r-- | taskflow/tests/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/taskflow/tests/utils.py b/taskflow/tests/utils.py index 53a17a4..43daf39 100644 --- a/taskflow/tests/utils.py +++ b/taskflow/tests/utils.py @@ -17,9 +17,10 @@ # under the License. import contextlib -import six import time +import six + from taskflow.persistence.backends import impl_memory from taskflow import task |
