fix: format all code with black

and from now on should not deviate from that...
This commit is contained in:
Lance Edgar 2025-08-31 13:11:31 -05:00
parent 0c4fa7ad06
commit c0ff89fec3
8 changed files with 44 additions and 39 deletions

View file

@ -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/*")