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

Docs/formatting #296

Merged
merged 3 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions maestrowf/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ def setup_parser():
# Set up the parser for our conductor here.
parser = ArgumentParser(prog="Conductor",
description="An application for checking and "
"managing an ExecutionDAG within an executing"
"managing an ExecutionDAG within an executing "
"study.",
formatter_class=RawTextHelpFormatter)

parser.add_argument("directory", type=str, help="The directory where"
"a study has been set up and where a pickle file"
" of an ExecutionGraph is stored.")
parser.add_argument("directory", type=str, help="The directory where "
"a study has been set up and where a pickle file "
"of an ExecutionGraph is stored.")
parser.add_argument("-s", "--status", action="store_true",
help="Check the status of the ExecutionGraph "
"located as specified by the 'directory' "
Expand Down
8 changes: 4 additions & 4 deletions maestrowf/maestro.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def status_study(args):
return 0
else:
print(
"Status check failed. If the issue persists, please verify that"
"Status check failed. If the issue persists, please verify that "
"you are passing in a path to a study.")
return 1

Expand Down Expand Up @@ -321,12 +321,12 @@ def setup_argparser():
help="Maximum number of submission attempts before a "
"step is marked as failed. [Default: %(default)d]")
run.add_argument("-r", "--rlimit", type=int, default=1,
help="Maximum number of restarts allowed when steps."
help="Maximum number of restarts allowed when steps. "
"specify a restart command (0 denotes no limit). "
"[Default: %(default)d]")
run.add_argument("-t", "--throttle", type=int, default=0,
help="Maximum number of inflight jobs allowed to execute "
"simultaneously (0 denotes not throttling)."
"simultaneously (0 denotes not throttling). "
"[Default: %(default)d]")
run.add_argument("-s", "--sleeptime", type=int, default=60,
help="Amount of time (in seconds) for the manager to "
Expand All @@ -336,7 +336,7 @@ def setup_argparser():
"study but do not launch it. [Default: %(default)s]")
run.add_argument("-p", "--pgen", type=str,
help="Path to a Python code file containing a function "
"that returns a custom filled ParameterGenerator"
"that returns a custom filled ParameterGenerator "
"instance.")
run.add_argument("--pargs", type=str, action="append", default=[],
help="A string that represents a single argument to pass "
Expand Down