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 Dec 20, 2024
1 parent d4e3654 commit a17eaee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion paraffin/submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ def submit_node_graph(
),
None,
):
log.debug(f"Submitting '{node.name}' to custom queue '{matched_pattern}'")
log.debug(
f"Submitting '{node.name}' to custom queue '{matched_pattern}'"
)
group_tasks.append(
repro.s(
name=node.name,
Expand Down
4 changes: 1 addition & 3 deletions paraffin/worker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ def make_celery() -> Celery:
__name__,
broker_url=url,
result_backend=url,
result_backend_transport_options = {
'global_keyprefix': 'paraffin_'
}
result_backend_transport_options={"global_keyprefix": "paraffin_"},
)
else:
paraffin_folder = pathlib.Path(".paraffin")
Expand Down

0 comments on commit a17eaee

Please sign in to comment.