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 d241e5d commit 8ee3c1dCopy full SHA for 8ee3c1d
labelbox/data/serialization/ndjson/base.py
@@ -12,7 +12,7 @@ class DataRow(BaseModel):
12
def validate_id(cls, v):
13
if v is None:
14
raise ValueError(
15
- "Data row ids are not set. Use `LabelGenerator.add_to_dataset`, `LabelCollection.add_to_dataset`, or `Label.create_data_row`. "
+ "Data row ids are not set. Use `LabelGenerator.add_to_dataset`, `LabelList.add_to_dataset`, or `Label.create_data_row`. "
16
"You can also manually assign the id for each `BaseData` object"
17
)
18
return v
0 commit comments