File tree Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,9 @@ def append_scenes(
270
270
asynchronous : Optional [bool ] = False ,
271
271
) -> Union [dict , AsyncJob ]:
272
272
"""TODO: Add updated docstring here"""
273
+ for scene in scenes :
274
+ scene .validate ()
275
+
273
276
if asynchronous :
274
277
check_all_scene_paths_remote (scenes )
275
278
request_id = serialize_and_write_to_presigned_url (
Original file line number Diff line number Diff line change 32
32
"reference_id" : "scene_1" ,
33
33
"frames" : [
34
34
{
35
- "lidar" : {
36
- "url" : TEST_POINTCLOUD_URLS [0 ],
37
- "type" : "pointcloud" ,
38
- "reference_id" : "lidar_frame_1" ,
39
- "metadata" : {},
35
+ "index" : 0 ,
36
+ "items" : {
37
+ "lidar" : {
38
+ "url" : TEST_POINTCLOUD_URLS [0 ],
39
+ "type" : "pointcloud" ,
40
+ "reference_id" : "lidar_frame_1" ,
41
+ "metadata" : {},
42
+ },
40
43
},
41
- },
44
+ }
42
45
],
43
46
"metadata" : {},
44
47
},
45
48
],
49
+ "update" : False ,
46
50
}
47
51
48
52
TEST_DATASET_ITEMS = [
You can’t perform that action at this time.
0 commit comments