There was an error while loading. Please reload this page.
1 parent 50359e3 commit 80519a7Copy full SHA for 80519a7
sdk/ml/azure-ai-ml/CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## 1.9.0 (Unreleased)
4
5
+### Other Changes
6
+
7
+- Improved the output when printing a workspace object to be more clean and readable.
8
9
## 1.8.0 (Unreleased)
10
11
### Features Added
sdk/ml/azure-ai-ml/azure/ai/ml/entities/_workspace/workspace.py
@@ -99,6 +99,7 @@ def __init__(
99
:param kwargs: A dictionary of additional configuration parameters.
100
:type kwargs: dict
101
"""
102
+ self.print_as_yaml = True
103
self._discovery_url = kwargs.pop("discovery_url", None)
104
self._mlflow_tracking_uri = kwargs.pop("mlflow_tracking_uri", None)
105
self._kind = kwargs.pop("kind", "default")
0 commit comments