Skip to content
Snippets Groups Projects
Commit 7b006e26 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Clean up sampler help

parent a67de2dd
No related branches found
No related tags found
1 merge request!183Adds documentation for implemented samplers
Pipeline #30437 passed
......@@ -1909,7 +1909,11 @@ if utils.command_line_args.sampler_help:
print('Help for sampler "{}":'.format(sampler))
print(sampler_class.__doc__)
else:
print('Requested sampler {} not implemented.')
if sampler == "None":
print('For help with a specific sampler, call sampler-help with '
'the name of the sampler')
else:
print('Requested sampler {} not implemented'.format(sampler))
print('Available samplers = {}'.format(implemented_samplers))
sys.exit()
......
......@@ -435,7 +435,8 @@ def set_up_command_line_arguments():
help="Force clean data, never use cached data")
parser.add_argument("-u", "--use-cached", action="store_true",
help="Force cached data and do not check its validity")
parser.add_argument("--sampler-help", help=("Print help for given sampler"))
parser.add_argument("--sampler-help", nargs='?', default=False,
const='None', help="Print help for given sampler")
parser.add_argument("-t", "--test", action="store_true",
help=("Used for testing only: don't run full PE, but"
" just check nothing breaks"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment