Skip to content

Commit

Permalink
Extend --help for ecm_prep.py per #249
Browse files Browse the repository at this point in the history
  • Loading branch information
aspeake committed Jan 18, 2024
1 parent 25ee48a commit 95a42da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion scout/ecm_prep_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ def ecm_args(args: list) -> argparse.NameSpace: # noqa: F821
"""

# Retrieve config file and CLI arguments
parser = ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter)
parser = ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter,
epilog = "For more detail please read:"
" https://scout-bto.readthedocs.io/en/latest/tutorials.html"
"#tutorial-2-preparing-ecms-for-analysis")
config = Config(parser, "ecm_prep", args)
opts = config.parse_args()
opts = translate_inputs(opts) # Translate for use downstream
Expand Down
2 changes: 1 addition & 1 deletion scout/supporting_data/config_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ properties:
health_costs:
type: boolean
default: false
description: Enable health costs.
description: Enable health costs. Requires alt_regions to be set to `EMM`.

split_fuel:
type: boolean
Expand Down

0 comments on commit 95a42da

Please sign in to comment.