summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-07-10 19:29:18 -0400
committeranselor <anselor@gmail.com>2020-07-11 17:30:40 -0400
commit6e19fb191dc0dd82416a9e9cc0b8e4a0ab5f200c (patch)
treeaf37712079d0184c9c0c6a1761a4f65b58b9d2b3 /tasks.py
parent4f631bec32592e9278860fd234ebe84facfec3c1 (diff)
downloadcmd2-git-6e19fb191dc0dd82416a9e9cc0b8e4a0ab5f200c.tar.gz
Ran isort
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks.py b/tasks.py
index 5f6a2609..e5f6e7cb 100644
--- a/tasks.py
+++ b/tasks.py
@@ -9,14 +9,14 @@ Make sure you satisfy the following Python module requirements if you are trying
- setuptools >= 39.1.0
"""
import os
-import invoke
import pathlib
import re
import shutil
import sys
-from plugins import tasks as plugin_tasks
+import invoke
+from plugins import tasks as plugin_tasks
TASK_ROOT = pathlib.Path(__file__).resolve().parent
TASK_ROOT_STR = str(TASK_ROOT)