Skip to content

Commit d5f3f7d

Browse files
rllinrllin
authored andcommitted
docxtring
1 parent c94e0cc commit d5f3f7d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

labelbox/schema/bulk_import_request.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,11 @@ class UuidError(NdjsonError):
288288

289289

290290
def _validate_ndjson(lines: Iterable[Dict[str, Any]]) -> None:
291+
"""Validate individual ndjson lines.
292+
293+
- verifies that uuids are unique
294+
295+
""""
291296
uuids: Set[str] = set()
292297
for line in lines:
293298
uuid = line['uuid']

0 commit comments

Comments
 (0)