Skip to content

Commit

Permalink
make internal
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Mar 23, 2024
1 parent 09e8157 commit 3783dfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions altair/vegalite/v5/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using_vegafusion as _using_vegafusion,
compile_with_vegafusion as _compile_with_vegafusion,
)
from ...utils._show import open_html_in_browser
from ...utils._show import open_html_in_browser as _open_html_in_browser
from ...utils.core import DataFrameLike
from ...utils.data import DataType

Expand Down Expand Up @@ -2701,7 +2701,7 @@ def show(
"""
buffer = io.StringIO()
self.save(buffer, format="html", embed_options=embed_options, inline=True)
open_html_in_browser(buffer.getvalue(), using=using, port=port)
_open_html_in_browser(buffer.getvalue(), using=using, port=port)

@utils.use_signature(core.Resolve)
def _set_resolve(self, **kwargs):
Expand Down

0 comments on commit 3783dfc

Please sign in to comment.