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 8s

This commit is contained in:
2026-06-09 13:13:24 +02:00
parent c7a2a32c73
commit 5165923595
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: