Skip to content

Commit 21c4eb5

Browse files
committed
fix: [image engine] fct to describe all images
1 parent c86905f commit 21c4eb5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/lib/images_engine.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,10 @@ def _create_image_description():
145145
for image in Images.get_all_images_objects():
146146
api_get_image_description(image.get_global_id())
147147
done += 1
148-
progress = int(done * 100 / total)
149-
print(f'{done}/{total} {progress}%')
148+
print(done)
149+
done += 1
150+
# progress = int(done * 100 / total)
151+
# print(f'{done}/{total} {progress}%')
150152

151153

152154
if __name__ == '__main__':

0 commit comments

Comments
 (0)