Commit 4c76310e authored by oroulet's avatar oroulet

add missing parenthese, update release.py

parent e9cfc5fb
......@@ -109,7 +109,7 @@ class Field(object):
self.array = False
def __str__(self):
return f"Field(name={self.name}, uatype={self.uatype}"
return f"Field(name={self.name}, uatype={self.uatype})"
__repr__ = __str__
......
......@@ -33,7 +33,7 @@ def release():
ans = input("upload to pip?(Y/n)")
if ans in ("", "y", "yes"):
os.system("rm -rf dist/*")
os.system("python setup.py sdist")
os.system("python3 setup.py sdist")
os.system("twine upload dist/*")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment