Skip to content

Commit 1857e74

Browse files
committed
Fixed broken links towards the documentation website
1 parent 71e80b0 commit 1857e74

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dataikuapi/dss/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def get_metadata(self):
8888
8989
Returns:
9090
a dict object. For more information on available metadata, please see
91-
https://doc.dataiku.com/dss/api/latest
91+
https://doc.dataiku.com/dss/api/4.3/rest/
9292
"""
9393
return self.client._perform_json(
9494
"GET", "/projects/%s/datasets/%s/metadata" % (self.project_key, self.dataset_name))

dataikuapi/dss/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_metadata(self):
8181
Get the metadata attached to this project. The metadata contains label, description
8282
checklists, tags and custom metadata of the project.
8383
84-
For more information on available metadata, please see https://doc.dataiku.com/dss/api/latest
84+
For more information on available metadata, please see https://doc.dataiku.com/dss/api/4.3/rest/
8585
8686
:returns: a dict object containing the project metadata.
8787
:rtype: dict

dataikuapi/dss/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_metadata(self):
5959
6060
Returns:
6161
a dict object. For more information on available metadata, please see
62-
https://doc.dataiku.com/dss/api/latest
62+
https://doc.dataiku.com/dss/api/4.3/rest/
6363
"""
6464
return self.client._perform_json(
6565
"GET", "/projects/%s/recipes/%s/metadata" % (self.project_key, self.recipe_name))

0 commit comments

Comments
 (0)