1
0
Fork 0

Also I renamed main.py ot __main__.py and placed in root directory.

This commit is contained in:
Alexander Andreev 2020-06-30 23:46:15 +04:00
parent f2da816be5
commit 2a126c3dfd
2 changed files with 3 additions and 0 deletions

View File

@ -183,3 +183,6 @@ def main():
except Exception as err:
print(f"Something went exceptionally wrong. Error:",
f"{type(err).__name__}:", err, file=stderr)
if __name__ == "__main__":
main()