diff --git a/job.py b/job.py index e0cd03e3e88ce88945faf02ba7006c4decd775f2..7cd299e5dc8db556a4dc628375c01628781be154 100644 --- a/job.py +++ b/job.py @@ -4,7 +4,7 @@ import os import subprocess import argparse -def makejob(commit_id, model, nruns, user, time_wall): +def makejob(commit_id, model, nruns, time_wall): return f"""#!/bin/bash #SBATCH --job-name={model} @@ -80,4 +80,4 @@ args = parser.parse_args() time_wall = {"no_limit": "48:00:00","hour" : "1:00:00", "half" : "0:00:00", "quarter" : "0:00:15"} # Launch the batch jobs -submit_job(makejob(commit_id, args.model_name, 1, args.user, time_wall[args.time_wall])) \ No newline at end of file +submit_job(makejob(commit_id, args.model_name, 1, time_wall[args.time_wall])) \ No newline at end of file