first of all thanks for the great module. In the process of using it, I noticed a small optimization for the code:
if target_label is not None:
self.add_label(source_label, model_name="six_pos", model_position="shead", preferred_placement="source_on_edge",
border_color=label_border_color, background_color = label_background_color)
i would suggest the following changes (target_label and thead):
if target_label is not None:
self.add_label(target_label, model_name="six_pos", model_position="thead", preferred_placement="source_on_edge",
border_color=label_border_color, background_color = label_background_color)
Hello, team!
first of all thanks for the great module. In the process of using it, I noticed a small optimization for the code:
i would suggest the following changes (target_label and thead):
Thanks!