Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
simedw committed Jan 6, 2023
1 parent 41cb80b commit 3ae7e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion darwin/importer/formats/coco.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def parse_annotation(annotation: Dict[str, Any], category_lookup_table: Dict[str
polygons = []
for path in paths:
point_path = []
points = iter(paths)
points = iter(path)
while True:
try:
x, y = next(points), next(points)
Expand Down

0 comments on commit 3ae7e4c

Please sign in to comment.