Skip to content
New issue

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

CLI & converting selected features by specifying the line for each #49

Merged
merged 7 commits into from
Feb 24, 2023
Merged
2 changes: 1 addition & 1 deletion src/ms3/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def get_arg_parser():
# reusable argument sets
parse_args = argparse.ArgumentParser(add_help=False)
parse_args.add_argument('-d', '--dir', metavar='DIR', default=os.getcwd(), type=check_dir,
help='Folder(s) that will be scanned for input files. Defaults to current working directory if no individual files are passed via -f.')
help='Folder(s) that will be scanned for input files. Defaults to current working directory.')
parse_args.add_argument('-o', '--out', metavar='OUT_DIR', type=check_and_create,
help='Output directory.')
parse_args.add_argument('-n', '--nonrecursive', action='store_true',
Expand Down
Loading