Skip to content

Commit 7537818

Browse files
committed
Fix broken class references.
1 parent a562c9e commit 7537818

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dataikuapi/dssclient.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def get_root_project_folder(self):
114114
"""
115115
Get a handle to interact with the root project folder.
116116
117-
:returns: A :class:`dataikuapi.dss.projectfolder.DSSProjectFolder`to interact with this project folder
117+
:returns: A :class:`dataikuapi.dss.projectfolder.DSSProjectFolder` to interact with this project folder
118118
"""
119119
return self.get_project_folder("ROOT")
120120

@@ -123,7 +123,7 @@ def get_project_folder(self, project_folder_id):
123123
Get a handle to interact with a project folder.
124124
125125
:param str project_folder_id: the project folder ID of the desired project folder
126-
:returns: A :class:`dataikuapi.dss.projectfolder.DSSProjectFolder`to interact with this project folder
126+
:returns: A :class:`dataikuapi.dss.projectfolder.DSSProjectFolder` to interact with this project folder
127127
"""
128128
data = self._perform_json("GET", "/project-folders/%s" % project_folder_id)
129129
return DSSProjectFolder(self, data)
@@ -179,7 +179,7 @@ def create_project(self, project_key, name, owner, description=None, settings=No
179179
:param dict settings: Initial settings for the project (can be modified later). The exact possible settings are not documented.
180180
:param str project_folder_id: the project folder ID in which the project will be created (root project folder if not specified)
181181
182-
:returns: A class:`dataikuapi.dss.project.DSSProject` project handle to interact with this project
182+
:returns: A :class:`dataikuapi.dss.project.DSSProject` project handle to interact with this project
183183
"""
184184
params = {}
185185
if project_folder_id is not None:

0 commit comments

Comments
 (0)