Skip to content

Commit 1724fc2

Browse files
committed
Fix lint
1 parent 678dc5a commit 1724fc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

labelbox/exporters/voc_exporter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ def write_label( # pylint: disable-msg=too-many-arguments
9898
# convert label to Pascal VOC format
9999
for category_name, paths in labels.items():
100100
if label_format == 'WKT':
101-
xml_writer = _add_pascal_object_from_wkt(xml_writer, wkt_data=paths, label=category_name)
101+
xml_writer = _add_pascal_object_from_wkt(
102+
xml_writer, wkt_data=paths, label=category_name)
102103
elif label_format == 'XY':
103104
xml_writer = _add_pascal_object_from_xy(xml_writer, polygons=paths, label=category_name)
104105
else:

0 commit comments

Comments
 (0)