Moved the run job command

This commit is contained in:
Jaret Burkett
2023-08-13 10:25:56 -06:00
parent 383bad958d
commit 1487d13191
3 changed files with 220 additions and 11 deletions

11
run.py
View File

@@ -21,17 +21,6 @@ def print_end_message(jobs_completed, jobs_failed):
print("========================================")
def run_job(
config: Union[str, dict, OrderedDict],
name=None
):
from toolkit.job import get_job
job = get_job(config, name)
job.run()
job.cleanup()
def main():
parser = argparse.ArgumentParser()