diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 23:13:27 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 23:13:27 -0500 |
commit | 076c9ebea10fba2a978d19057caccab9e8862ab4 (patch) | |
tree | a1ae525672109429e3a6e2fd7d5cc53f0b52106e /plugins/tasks.py | |
parent | eb995fafdddc3de9632c3bcb05356e79ee46dc5c (diff) | |
download | cmd2-git-076c9ebea10fba2a978d19057caccab9e8862ab4.tar.gz |
Attempt to fix remaining black failures
Diffstat (limited to 'plugins/tasks.py')
-rw-r--r-- | plugins/tasks.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/tasks.py b/plugins/tasks.py index 7d347454..eed69c73 100644 --- a/plugins/tasks.py +++ b/plugins/tasks.py @@ -14,7 +14,10 @@ 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') |