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 41268b3 commit f97653fCopy full SHA for f97653f
superannotate/db/exports.py
@@ -135,10 +135,10 @@ def prepare_export(
135
"Include fuse functionality is not supported for projects containing items attached with URLs"
136
)
137
include_fuse = False
138
- if project["type"] == "Video":
+ if project["type"] in ["Video","Text"]:
139
if only_pinned:
140
logger.warning(
141
- "Pin functionality is not supported for projects containing videos attached with URLs"
+ f"Pin functionality is not supported for projects containing {project['type']} attached with URLs"
142
143
only_pinned, include_fuse = False, False
144
0 commit comments