Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 3, 2023
1 parent 1cccf1a commit 0974020
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 2 additions & 4 deletions ingest/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
)
)

Expand Down
4 changes: 3 additions & 1 deletion ingest/workflow/snakemake_rules/upload.smk
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0974020

Please sign in to comment.