Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Nov 15, 2024
1 parent 805c533 commit a88276f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysqa/base/modular.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def submit_job(
int: The cluster queue ID.
"""
working_directory, queue_script_path = self._write_queue_script(
working_directory, submission_script_path = self._write_queue_script(
queue=queue,
job_name=job_name,
working_directory=working_directory,
Expand All @@ -87,7 +87,7 @@ def submit_job(
cluster_module = self._queue_to_cluster_dict[queue]
commands = self._switch_cluster_command(
cluster_module=cluster_module
) + self._list_command_to_be_executed(queue_script_path=queue_script_path)
) + self._list_command_to_be_executed(submission_script_path=submission_script_path)
out = self._execute_command(
commands=commands,
working_directory=working_directory,
Expand Down

0 comments on commit a88276f

Please sign in to comment.