summaryrefslogtreecommitdiff
path: root/plugins/tasks.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 22:29:57 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 22:29:57 -0500
commitf456b802754c3d1095b488d670bebba21018d823 (patch)
treebf7011f585a8a35ab4cc7ff98aaeebed4de87f84 /plugins/tasks.py
parent918200c02d392c17862fff81bbf58820ed15c725 (diff)
downloadcmd2-git-f456b802754c3d1095b488d670bebba21018d823.tar.gz
Add black for automatic code format
Diffstat (limited to 'plugins/tasks.py')
-rw-r--r--plugins/tasks.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/plugins/tasks.py b/plugins/tasks.py
index f198c34e..7d347454 100644
--- a/plugins/tasks.py
+++ b/plugins/tasks.py
@@ -10,17 +10,11 @@ Make sure you satisfy the following Python module requirements if you are trying
"""
import invoke
-from plugins.ext_test import (
- tasks as ext_test_tasks,
-)
-from plugins.template import (
- tasks as template_tasks,
-)
+from plugins.ext_test import tasks as ext_test_tasks
+from plugins.template import tasks as template_tasks
# create namespaces
-namespace = invoke.Collection(ext_test=ext_test_tasks,
- template=template_tasks,
- )
+namespace = invoke.Collection(ext_test=ext_test_tasks, template=template_tasks,)
namespace_clean = invoke.Collection('clean')
namespace.add_collection(namespace_clean, 'clean')