Skip to content
Snippets Groups Projects
Commit cb866fb7 authored by Ian's avatar Ian
Browse files

docs: update Job class docstring and clarify resubmission prompt

parent 3aae2832
No related branches found
No related tags found
Loading
......@@ -5,7 +5,7 @@ maap = MAAP(maap_host="api.maap-project.org")
class Job:
"""Represents an individual processing job"""
"""Handles API interactions for a single job on MAAP"""
def __init__(self, kwargs: Dict):
self._kwargs = kwargs
......
......@@ -186,8 +186,8 @@ class JobManager:
"""Prompt user for interactive resubmission of failed jobs"""
redo_answer = input(
"\nResubmit failed jobs? [y/N] "
"This will resubmit all jobs that do not have 'Succeeded' status "
"and continue monitoring.\n"
"This will resubmit all finished jobs that do not have 'Succeeded'"
" status and continue monitoring.\n"
).strip()
if redo_answer == "y":
redo = True
......
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