Skip to content

Commit 5ccbacf

Browse files
committed
Fix paths
1 parent ad8f105 commit 5ccbacf

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/superannotate/lib/core/usecases.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4150,7 +4150,15 @@ def paths(self):
41504150
):
41514151
paths.append(key)
41524152
break
4153-
return paths
4153+
4154+
paths = [str(path) for path in paths]
4155+
return [
4156+
path
4157+
for path in paths
4158+
if "___objects" not in path
4159+
and "___fuse" not in path
4160+
and "___pixel" not in path
4161+
]
41544162

41554163
@cached_property
41564164
def images_to_upload(self):

0 commit comments

Comments
 (0)