Skip to content

Commit f7c9412

Browse files
committed
docstring - typo fix
1 parent 0008a88 commit f7c9412

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dataikuapi/dss/scenario.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,17 @@ def get_run(self, run_id):
134134
def get_status(self):
135135
"""
136136
Returns the status of this scenario
137-
:rtype :class:`DSSScenarioStatus`
137+
138+
:rtype: :class:`DSSScenarioStatus`
138139
"""
139140
data = self.client._perform_json("GET", "/projects/%s/scenarios/%s/light" % (self.project_key, self.id))
140141
return DSSScenarioStatus(self, data)
141142

142143
def get_settings(self):
143144
"""
144145
Returns the settings of this scenario
145-
:rtype :class:`StepBasedDSSScenarioSettings` or :class:`PythonScriptBasedScenarioSettings`
146+
147+
:rtype: :class:`StepBasedScenarioSettings` or :class:`PythonScriptBasedScenarioSettings`
146148
"""
147149
data = self.client._perform_json("GET", "/projects/%s/scenarios/%s" % (self.project_key, self.id))
148150

0 commit comments

Comments
 (0)