fix: format all code with black
and from now on should not deviate from that...
This commit is contained in:
parent
0c4fa7ad06
commit
c0ff89fec3
8 changed files with 44 additions and 39 deletions
8
tasks.py
8
tasks.py
|
@ -14,8 +14,8 @@ def release(c):
|
|||
"""
|
||||
Release a new version of Wutta Demo
|
||||
"""
|
||||
if os.path.exists('dist'):
|
||||
shutil.rmtree('dist')
|
||||
if os.path.exists("dist"):
|
||||
shutil.rmtree("dist")
|
||||
|
||||
c.run('python -m build --sdist')
|
||||
c.run('twine upload dist/*')
|
||||
c.run("python -m build --sdist")
|
||||
c.run("twine upload dist/*")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue