Skip to content

Commit 41c07f1

Browse files
committed
Remove tqdm unit parameter
1 parent 5ac4bd8 commit 41c07f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roboflow/util/folderparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def _map_annotations_to_images_1tomany(images, annotations):
119119
key = f"{directory}/{annotation['image_id']}"
120120
annotationByDirectoryImageId[key].append(annotation)
121121

122-
for image in tqdm(images, unit="percentage"):
122+
for image in tqdm(images):
123123
dirname = image["dirname"]
124124
annotationsInSameDir = annotationsByDirname.get(dirname, [])
125125
if annotationsInSameDir:

0 commit comments

Comments
 (0)