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 97f0106 commit 8ca0e88Copy full SHA for 8ca0e88
src/superannotate/__init__.py
@@ -1,7 +1,7 @@
1
import os
2
import sys
3
4
-__version__ = "4.4.1b3"
+__version__ = "4.4.1b4"
5
6
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
7
src/superannotate/lib/core/usecases/items.py
@@ -209,9 +209,7 @@ def execute(self) -> Response:
209
if service_response.ok:
210
data = []
211
for i, item in enumerate(service_response.data):
212
- tmp_item = GetItem.serialize_entity(
213
- item, self._project
214
- )
+ tmp_item = GetItem.serialize_entity(BaseItemEntity(**item), self._project)
215
folder_path = f"{'/' + item['folder_name'] if not item['is_root_folder'] else ''}"
216
tmp_item.path = f"{self._project.name}" + folder_path
217
data.append(tmp_item)
0 commit comments