Skip to content

Commit

Permalink
Merge branch 'main' into 15-add-save-import-napari
Browse files Browse the repository at this point in the history
  • Loading branch information
nfahlgren authored May 8, 2024
2 parents d9ffbbf + 142bf93 commit ace2767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plantcv/annotate/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class label, by default "default"
"""
if label not in self.coords:
self.coords[label] = []
for (x, y) in coords:
for (y, x) in coords:
self.coords[label].append((x, y))
self.count[label] = len(self.coords[label])
self.view(label=label, color=self.color, view_all=False)
Expand Down

0 comments on commit ace2767

Please sign in to comment.