We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Including a parameter that doesn't exist gives an unexpected error message (I found this when testing #2444 )
ctapipe-process --input events.simtel.zst --config base_config.yaml \ --config stage1_config.yaml --output events.dl1.h5 \ --log-level=INFO --wrong-parameter --max-events=100 --overwrite ctapipe-process: error: argument --wrong-parameter: expected one argument
Expected behavior
Should say --wrong-parameter is not a valid option or similar.
--wrong-parameter is not a valid option
The text was updated successfully, but these errors were encountered:
Indeed if I use --wrong-parameter=6 the message is more clear:
--wrong-parameter=6
ctapipe-process: error: unrecognized arguments: --wrong-parameter=6
So it's only in the case where the parameter is not set.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Including a parameter that doesn't exist gives an unexpected error message (I found this when testing #2444 )
Expected behavior
Should say
--wrong-parameter is not a valid option
or similar.The text was updated successfully, but these errors were encountered: