diff --git a/ingest/Snakefile b/ingest/Snakefile index 0566d575..6350149b 100644 --- a/ingest/Snakefile +++ b/ingest/Snakefile @@ -29,11 +29,9 @@ def _get_all_targets(wildcards): else: all_targets.extend( expand( - [ - f"data/upload/{target}/{{remote_file_name}}.done" - ], + [f"data/upload/{target}/{{remote_file_name}}.done"], zip, - remote_file_name=files_to_upload.keys() + remote_file_name=files_to_upload.keys(), ) ) diff --git a/ingest/workflow/snakemake_rules/upload.smk b/ingest/workflow/snakemake_rules/upload.smk index f18aebe9..60c5c9b7 100644 --- a/ingest/workflow/snakemake_rules/upload.smk +++ b/ingest/workflow/snakemake_rules/upload.smk @@ -27,7 +27,9 @@ def _get_upload_inputs(wildcards): `send_notifications` is True. """ inputs = { - "file_to_upload": config["upload"]["s3"]["files_to_upload"][wildcards.remote_file_name], + "file_to_upload": config["upload"]["s3"]["files_to_upload"][ + wildcards.remote_file_name + ], } if send_notifications: