Skip to content

Commit 69098ec

Browse files
fmt
1 parent 04319bb commit 69098ec

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

snakemake_interface_executor_plugins/dag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def get_sources(self) -> Iterable[str]:
2020

2121
@abstractmethod
2222
def get_unneeded_temp_files(self, job: JobExecutorInterface) -> Iterable[str]:
23-
...
23+
...

snakemake_interface_executor_plugins/executors/real.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ def get_job_args(self, job: JobExecutorInterface, **kwargs):
9797
format_cli_arg("--cores", kwargs.get("cores", self.cores)),
9898
format_cli_arg("--attempt", job.attempt),
9999
format_cli_arg("--force-use-threads", not job.is_group()),
100-
format_cli_arg("--unneeded-temp-files", self.workflow.dag.unneeded_temp_files(job)),
100+
format_cli_arg(
101+
"--unneeded-temp-files", self.workflow.dag.unneeded_temp_files(job)
102+
),
101103
self.get_resource_declarations(job),
102104
]
103105
)

0 commit comments

Comments
 (0)