From 7eb74983f60c7b522d98cba2948a76995169433b Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Wed, 3 May 2023 12:35:06 -0600 Subject: [PATCH] Propagate kwargs all the way --- pysqa/queueadapter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pysqa/queueadapter.py b/pysqa/queueadapter.py index 29ca1431..114d7d36 100644 --- a/pysqa/queueadapter.py +++ b/pysqa/queueadapter.py @@ -141,6 +141,7 @@ def submit_job( run_time_max=None, dependency_list=None, command=None, + **kwargs ): """ Submits command to the given queue. @@ -167,6 +168,7 @@ def submit_job( run_time_max=run_time_max, dependency_list=dependency_list, command=command, + **kwargs ) def enable_reservation(self, process_id):