diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-07-10 19:29:18 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-07-11 17:30:40 -0400 |
commit | 6e19fb191dc0dd82416a9e9cc0b8e4a0ab5f200c (patch) | |
tree | af37712079d0184c9c0c6a1761a4f65b58b9d2b3 /tasks.py | |
parent | 4f631bec32592e9278860fd234ebe84facfec3c1 (diff) | |
download | cmd2-git-6e19fb191dc0dd82416a9e9cc0b8e4a0ab5f200c.tar.gz |
Ran isort
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |