Skip to content

Commit a04634f

Browse files
author
arnaudde
committed
Add blank lines before :param
1 parent 5c79555 commit a04634f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

dataikuapi/dss/ml.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,7 @@ def get_assertion(self, assertion_name):
672672
"""
673673
Gets a :class:`DSSMLAssertionParams` representing the parameters of the assertion with the
674674
provided name (or None if no assertion has that name)
675+
675676
:param str assertion_name: Name of the assertion
676677
:rtype: :class:`DSSMLAssertionParams` or None if no assertion has that name
677678
"""
@@ -683,6 +684,7 @@ def get_assertion(self, assertion_name):
683684
def add_assertion(self, assertion_params):
684685
"""
685686
Adds parameters of an assertion to the assertions parameters of the ml task.
687+
686688
:param object assertion_params: A :class:`DSSMLAssertionParams` representing parameters of the assertion
687689
"""
688690
if not isinstance(assertion_params, DSSMLAssertionParams):
@@ -694,6 +696,7 @@ def delete_assertion(self, assertion_name):
694696
"""
695697
Deletes the assertion parameters of the assertion with the provided name from the assertions parameters of the ml task.
696698
Raises a ValueError if no assertion with the provided name was found
699+
697700
:param str assertion_name: Name of the assertion
698701
"""
699702
for idx, assertion_dict in enumerate(self._internal_dict["assertions"]):

0 commit comments

Comments
 (0)