summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2021-10-09 18:09:53 -0400
committerJeff Forcier <jeff@bitprophet.org>2021-10-09 18:09:53 -0400
commitff6082608026b618d93c67d68d15fa452eef52a4 (patch)
tree7bd84375357a0c1cf724de7293b722b491a71edf
parent7714caf79a09dc455a32c6071dd22ba37c399758 (diff)
downloadparamiko-ff6082608026b618d93c67d68d15fa452eef52a4.tar.gz
blacken
-rw-r--r--tasks.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tasks.py b/tasks.py
index 6512e406..2e105297 100644
--- a/tasks.py
+++ b/tasks.py
@@ -100,7 +100,9 @@ def guard(ctx, opts=""):
# TODO 3.0: I'd like to just axe the 'built docs in sdist', none of my other
# projects do it.
@task
-def publish_(ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None):
+def publish_(
+ ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None
+):
"""
Wraps invocations.packaging.publish to add baked-in docs folder.
"""
@@ -154,6 +156,6 @@ ns.configure(
"changelog_file": join(
www.configuration()["sphinx"]["source"], "changelog.rst"
),
- },
+ }
}
)