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 ff9fb01 commit e135118Copy full SHA for e135118
controller/transfer/record_transfer_manager.py
@@ -237,6 +237,11 @@ def split_record_data_and_label_data(
237
label_data = {}
238
for imported_key, item in data_item.items():
239
if "__" in imported_key:
240
+ if (
241
+ item.strip() == ""
242
+ ): # if a label is only consists of whitespaces or is empty continue
243
+ continue
244
+
245
task_name = controller.labeling_task.util.infer_labeling_task_name(
246
imported_key
247
)
0 commit comments