Skip to content

Commit

Permalink
style(black): format with black v24 (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonadoni committed Jan 29, 2024
1 parent 4b8f539 commit 2329437
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions reana_workflow_controller/consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@ def get_consumers(self, Consumer, channel):
queues=self.queue,
callbacks=[self.on_message],
accept=[self.message_default_format],
prefetch_count=REANA_JOB_STATUS_CONSUMER_PREFETCH_COUNT
if REANA_JOB_STATUS_CONSUMER_PREFETCH_COUNT
else None,
prefetch_count=(
REANA_JOB_STATUS_CONSUMER_PREFETCH_COUNT
if REANA_JOB_STATUS_CONSUMER_PREFETCH_COUNT
else None
),
)
]

Expand Down

0 comments on commit 2329437

Please sign in to comment.