Skip to content

Commit d00089c

Browse files
authored
Remove limits from point fetches (#388)
1 parent 7906b22 commit d00089c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nucleus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ def download_pointcloud_task(
10081008

10091009
sample_point = points[0]
10101010
if I_KEY in sample_point.keys():
1011-
return [LidarPoint.from_json(pt) for pt in points[:10]]
1011+
return [LidarPoint.from_json(pt) for pt in points]
10121012

10131013
return [Point3D.from_json(pt) for pt in points]
10141014

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exclude = '''
2121

2222
[tool.poetry]
2323
name = "scale-nucleus"
24-
version = "0.15.7"
24+
version = "0.15.8"
2525
description = "The official Python client library for Nucleus, the Data Platform for AI"
2626
license = "MIT"
2727
authors = ["Scale AI Nucleus Team <nucleusapi@scaleapi.com>"]

0 commit comments

Comments
 (0)