Skip to content

Commit

Permalink
(2d) f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh authored Jul 6, 2024
1 parent e03d8b5 commit 9ca8ce4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def _object_colors_to_label(object_colors, object_name):
"""
label = f" {object_name} colors:"
for color in object_colors:
label += " {}".format(color)
label += f" {color}"
return label

@staticmethod
Expand Down

0 comments on commit 9ca8ce4

Please sign in to comment.