From 5d440f98a9cceadd88cb51fa4d1f78556a067b0a Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 5 Nov 2023 09:45:11 -0500 Subject: [PATCH] make fullscreen a keyword-only argument --- altair/vegalite/v5/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/altair/vegalite/v5/api.py b/altair/vegalite/v5/api.py index be8bf1a89..a5e280874 100644 --- a/altair/vegalite/v5/api.py +++ b/altair/vegalite/v5/api.py @@ -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.