check-settings doesn't spit errors when invoked w/o args

This commit is contained in:
likho 2024-06-30 07:03:24 -07:00
parent f23a166c3d
commit 2d302bfec9

View File

@ -100,6 +100,8 @@ def get_args():
print("'--no-prompt' set")
if args.check:
print("--check set", args.check)
else:
args.check = "settings.toml"
return args.no_prompt, args.check
def main(is_no_prompt, user_conf_file="settings.toml"):