Skip to content

Commit

Permalink
Avoid one long word, use spaces here
Browse files Browse the repository at this point in the history
  • Loading branch information
rutgerkok committed Oct 11, 2023
1 parent 825a3f3 commit 15587b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion organoid_tracker/visualizer/link_and_position_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def _position_string(self, position: Optional[Position]) -> str:
data_names = data_names[0:10]
data_names.append("...")
if len(data_names) > 0:
return_value += " (with " + ",".join(data_names) + ")"
return_value += " (with " + ", ".join(data_names) + ")"
return return_value

def get_extra_menu_options(self):
Expand Down

0 comments on commit 15587b5

Please sign in to comment.