Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 5e05256

Browse files
committed
Fix task syntax
1 parent 3488886 commit 5e05256

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tasks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def deploy_docs(c):
5858
c.run("ghp-import --push --force --no-jekyll docs/_build/html/")
5959

6060

61+
@task
6162
def publish_wheel(c):
6263
c.run("poetry publish --build")
6364

@@ -74,7 +75,7 @@ def lint(c):
7475
pass
7576

7677

77-
@task(pre=[call(deploy_docs, publish_wheel)])
78+
@task(pre=[call(deploy_docs), call(publish_wheel)])
7879
def publish(c):
7980
pass
8081

0 commit comments

Comments
 (0)