Skip to content

Commit b3868bb

Browse files
Vaghinak BasentsyanVaghinak Basentsyan
authored andcommitted
Fix response data for upload_annotations_from_folder_to_project
1 parent 2528f30 commit b3868bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/superannotate/lib/core/usecases/annotations.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,12 @@ def execute(self):
247247
failed_annotations.append(annotation)
248248
self.reporter.update_progress()
249249

250-
self._response.data = (
251-
uploaded_annotations,
252-
failed_annotations,
253-
[annotation.path for annotation in self._missing_annotations],
254-
)
255250
self._log_report()
251+
self._response.data = (
252+
uploaded_annotations,
253+
failed_annotations,
254+
[annotation.path for annotation in self._missing_annotations],
255+
)
256256
return self._response
257257

258258

0 commit comments

Comments
 (0)