From a121fae56eaca74750d1f08af1db3f4c17cf6e7f Mon Sep 17 00:00:00 2001 From: Yandi <yandirzm@gmail.com> Date: Tue, 31 Jan 2023 22:05:01 +0100 Subject: [PATCH] removed users from arguments --- job.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/job.py b/job.py index e0cd03e..7cd299e 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 -- GitLab