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 e169894 commit 38d8127Copy full SHA for 38d8127
libs/labelbox/src/labelbox/data/serialization/ndjson/label.py
@@ -54,6 +54,8 @@ def __init__(self, **kwargs):
54
if field.default == PydanticUndefined and k != "uuid":
55
if hasattr(field, "alias") and field.alias in item_annotation_keys:
56
annotation_keys.append(field.alias)
57
+ elif hasattr(field, "validation_alias") and field.validation_alias in item_annotation_keys:
58
+ annotation_keys.append(field.validation_alias)
59
else:
60
annotation_keys.append(k)
61
0 commit comments