We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b38b38f commit dfd56aaCopy full SHA for dfd56aa
dataikuapi/dss/ml.py
@@ -340,8 +340,8 @@ def _get_custom_algorithm_names(self):
340
:returns: the list of custom models names
341
:rtype: list of string
342
"""
343
- return [algo["name"] for algo in self.mltask_settings["modeling"]["custom_mllib"]]\
344
- + [algo["name"] for algo in self.mltask_settings["modeling"]["custom_python"]]
+ return ([algo["name"] for algo in self.mltask_settings["modeling"]["custom_mllib"]]
+ + [algo["name"] for algo in self.mltask_settings["modeling"]["custom_python"]])
345
346
def get_enabled_algorithm_names(self):
347
0 commit comments