Skip to content

Commit

Permalink
Style fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjoliver committed Nov 20, 2024
1 parent 128a1e4 commit cb52762
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cylc/flow/scripts/dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,9 @@ async def dump(workflow_id, options, write=print):
if attrs:
result += " (" + ",".join(attrs) + ")"
if options.show_flows:
result += f" flows={item['flowNums'].replace(' ','')}"
result += (
f" flows={item['flowNums'].replace(' ','')}"
)
write(result)

except Exception as exc:
Expand Down

0 comments on commit cb52762

Please sign in to comment.