Do hard exit on invalid args

This commit is contained in:
henryruhs 2024-10-15 10:31:10 +02:00
parent 2fd1e3a46d
commit 0a3ca0be64

View File

@ -41,6 +41,8 @@ def cli() -> None:
route(args)
else:
program.print_help()
else:
hard_exit(2)
def route(args : Args) -> None: