Skip to content
Snippets Groups Projects

Use ids instead of names in bundles.

Merged Adham Hashibon requested to merge use-ids-instead-of-names into master
2 files
+ 5
0
Compare changes
  • Side-by-side
  • Inline
Files
2
import click
from ..bdss_application import BDSSApplication
# Makes the application rethrow the exception so that it exits return code
# different from zero.
from traits.api import push_exception_handler
push_exception_handler(reraise_exceptions=True)
@click.command()
@click.option("--evaluate", is_flag=True)
@click.argument('workflow_filepath', type=click.Path(exists=True))
Loading