Skip to content

Commit 1b98c2f

Browse files
committed
Adjust docstrings
1 parent 05334ae commit 1b98c2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

dataikuapi/dss/feature_store.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ def id(self):
1212
return self.project_key + "." + self.name
1313

1414
def get_as_dataset(self):
15+
"""
16+
:return: a handle on the dataset
17+
:rtype: :class:`dataikuapi.dss.dataset.DSSDataset`
18+
"""
1519
return DSSDataset(self.client, self.project_key, self.name)
1620

1721

@@ -29,7 +33,7 @@ def list_feature_groups(self):
2933
and that are defined as feature groups in the DSS instance
3034
3135
:return: list of dataset names
32-
:rtype: list of str
36+
:rtype: list of :class:`dataikuapi.feature_store.DSSFeatureGroupListItem`
3337
"""
3438
items = self.client._perform_json("GET", "/feature-store/feature-groups")
3539
return [DSSFeatureGroupListItem(self.client, item["projectKey"], item["name"]) for item in items]

0 commit comments

Comments
 (0)