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 c4c4793 commit a9652e7Copy full SHA for a9652e7
nucleus/dataset.py
@@ -241,7 +241,9 @@ def info(self) -> DatasetInfo:
241
Returns:
242
:class:`DatasetInfo`
243
"""
244
- response = self._client.dataset_info(self.id)
+ response = self._client.make_request(
245
+ {}, f"dataset/{self.id}/info", requests.get
246
+ )
247
dataset_info = DatasetInfo.parse_obj(response)
248
return dataset_info
249
pyproject.toml
@@ -21,7 +21,7 @@ exclude = '''
21
22
[tool.poetry]
23
name = "scale-nucleus"
24
-version = "0.3.0"
+version = "0.3.1"
25
description = "The official Python client library for Nucleus, the Data Platform for AI"
26
license = "MIT"
27
authors = ["Scale AI Nucleus Team <nucleusapi@scaleapi.com>"]
0 commit comments