Skip to content

Commit

Permalink
make fullscreen a keyword-only argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Nov 5, 2023
1 parent 454fd67 commit 5d440f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion altair/vegalite/v5/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ def to_html(
requirejs=requirejs,
)

def to_url(self, fullscreen: bool = False) -> str:
def to_url(self, *, fullscreen: bool = False) -> str:
"""Convert a chart to a URL that opens the chart specification in the Vega chart editor
The chart specification (including any inline data) is encoded in the URL.
Expand Down

0 comments on commit 5d440f9

Please sign in to comment.