fixed version dunder

This commit is contained in:
2023-03-20 19:37:41 -04:00
parent 84fa3d207d
commit 78943bf5f6
2 changed files with 12 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
# version.py
VERSION = "1.0.0"
def main():
# Put your main program code here
print(VERSION)
if __name__ == '__main__':
# This code will be executed only when the file is run as the main program
main()