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 cc962a5 commit eedfa0cCopy full SHA for eedfa0c
labelbox/schema/project.py
@@ -199,7 +199,7 @@ def label_generator(self, timeout_seconds=60):
199
is_video = [
200
'frames' in row['Label'] for row in json_data if row['Label']
201
]
202
- if len(is_video) and not any(is_video):
+ if len(is_video) and any(is_video):
203
raise ValueError(
204
"Found video data rows in export. "
205
"Use project.export_labels() to export projects with mixed data types. "
0 commit comments