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:05:00 -05:00
parent eb9291fce7
commit 1b4ba2089a
19 changed files with 248 additions and 205 deletions

View file

@ -15,10 +15,10 @@ def release(c, skip_tests=False):
Release a new version of Wutta-COREPOS
"""
if not skip_tests:
c.run('pytest')
c.run("pytest")
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/*")