Skip to content

Commit c223677

Browse files
samronsinmhham
andauthored
Avoid copying raw_settings in PredictionAlgorithmSettings __repr__
Co-authored-by: Mehdi Hamoumi <mhham@users.noreply.github.com>
1 parent c1cba63 commit c223677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataikuapi/dss/ml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ def _repr_html_(self):
947947
return res + "<details><pre>{}</pre></details>".format(self.__repr__())
948948

949949
def __repr__(self):
950-
return self.__class__.__name__ + "(values={})".format(self.copy())
950+
return self.__class__.__name__ + "(values={})".format(dict.__repr__(self))
951951

952952
__str__ = __repr__
953953

0 commit comments

Comments
 (0)