Skip to content

Commit 373d64b

Browse files
committed
fix: use public members of IPython core
1 parent 816a607 commit 373d64b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: google/cloud/aiplatform/utils/_ipython_utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ def display_link(text: str, url: str, icon: Optional[str] = "open_in_new") -> No
146146
</script>
147147
"""
148148

149-
from IPython.core.display import display
149+
from IPython.core.display import display_html
150150
from IPython.display import HTML
151151

152-
display(HTML(html))
152+
display_html(HTML(html))
153153

154154

155155
def display_experiment_button(experiment: "experiment_resources.Experiment") -> None:

0 commit comments

Comments
 (0)