remove unnecessary print statement for missing version file

This commit is contained in:
2025-05-29 12:17:02 +02:00
parent dd97c0d68a
commit 6fdfdbee31

View File

@@ -6,8 +6,6 @@ def main():
def get_version():
with open(".version") as f:
return f.read().strip()
print("Version file not found. Returning default version '0.0.0'.")
if __name__ == "__main__":
main()