We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad59d6e commit 41f07b7Copy full SHA for 41f07b7
src/superannotate/lib/core/usecases/annotations.py
@@ -209,7 +209,7 @@ def execute(self):
209
iterations_range = range(
210
0, len(self.annotations_to_upload), self.AUTH_DATA_CHUNK_SIZE
211
)
212
- self.reporter.start_progress(iterations_range, description="Uploading Annotations")
+ self.reporter.start_progress(len(self.annotations_to_upload), description="Uploading Annotations")
213
for step in iterations_range:
214
annotations_to_upload = self.annotations_to_upload[step : step + self.AUTH_DATA_CHUNK_SIZE] # noqa: E203
215
upload_data = self.get_annotation_upload_data(
0 commit comments