Only print help in utils scripts if specifically requested (bugfix)
Test And Build / Lint (push) Failing after 4s
Test And Build / Build (push) Successful in 7s

This commit is contained in:
2026-06-09 13:14:09 +02:00
parent 1aaca37b6e
commit 55bd5ee3f2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ the next value can be typed in. Type 'quit' to close the prompt.
if __name__ == "__main__":
from sys import argv
if "-h" or "--help" in argv:
if "-h" in argv or "--help" in argv:
print(help)
if len(argv) == 1: