summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-09-17 15:51:22 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-09-17 15:51:22 -0700
commit4e31612cfbcd7cb333ac54571f11dd5593b15d94 (patch)
treeb9af871f3ee08287229260d26079a6485d0f0273 /tasks.py
parent025a250d38b0046e06dfacf437a09276a84e2c59 (diff)
Blacken 2.0 with black 18.6b4
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/tasks.py b/tasks.py
index 795a9c99..6ea0a2c4 100644
--- a/tasks.py
+++ b/tasks.py
@@ -107,7 +107,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None):
copytree("sites/docs/_build", target)
# Publish
publish(
- ctx, sdist=sdist, wheel=wheel, sign=sign, dry_run=dry_run, index=index,
+ ctx, sdist=sdist, wheel=wheel, sign=sign, dry_run=dry_run, index=index
)
# Remind
print(
@@ -122,15 +122,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None):
release_coll.tasks["publish"] = release
ns = Collection(
- test,
- coverage,
- guard,
- release_coll,
- docs,
- www,
- sites,
- travis,
- blacken,
+ test, coverage, guard, release_coll, docs, www, sites, travis, blacken
)
ns.configure(
{