Skip to content

Commit

Permalink
fix: use open_in_new_tab in the render method. (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiseiak committed Dec 23, 2021
1 parent 8df74a2 commit 04618e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google/cloud/aiplatform/explain/lit.py
Expand Up @@ -206,8 +206,8 @@ def open_lit(
Raises:
ImportError if LIT is not installed.
"""
widget = notebook.LitWidget(models, datasets, open_in_new_tab=open_in_new_tab)
widget.render()
widget = notebook.LitWidget(models, datasets)
widget.render(open_in_new_tab=open_in_new_tab)


def set_up_and_open_lit(
Expand Down

0 comments on commit 04618e0

Please sign in to comment.