Skip to content

Commit f97653f

Browse files
committed
Fix prepare export log
1 parent 41268b3 commit f97653f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

superannotate/db/exports.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ def prepare_export(
135135
"Include fuse functionality is not supported for projects containing items attached with URLs"
136136
)
137137
include_fuse = False
138-
if project["type"] == "Video":
138+
if project["type"] in ["Video","Text"]:
139139
if only_pinned:
140140
logger.warning(
141-
"Pin functionality is not supported for projects containing videos attached with URLs"
141+
f"Pin functionality is not supported for projects containing {project['type']} attached with URLs"
142142
)
143143
only_pinned, include_fuse = False, False
144144

0 commit comments

Comments
 (0)