Skip to content

Commit

Permalink
Code formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Nov 18, 2023
1 parent a317aad commit 4a8c481
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions colour/graph/conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -1155,15 +1155,15 @@ def describe_conversion_path(

conversion_path = _conversion_path(source, target)

joined_conversion_path = " --> ".join(
[
f'"{_lower_order_function(conversion_function).__name__}"'
for conversion_function in conversion_path
]
)

message_box(
"[ Conversion Path ]\n\n{}".format(
" --> ".join(
[
f'"{_lower_order_function(conversion_function).__name__}"'
for conversion_function in conversion_path
]
)
),
f"[ Conversion Path ]\n\n{joined_conversion_path}",
width,
padding,
print_callable,
Expand Down

0 comments on commit 4a8c481

Please sign in to comment.