From b8b71222db36beb8b3e564d9ece78bfc47991283 Mon Sep 17 00:00:00 2001 From: Hans Then Date: Fri, 3 Jan 2025 19:09:00 +0100 Subject: [PATCH] Fix javascript template --- folium/plugins/timeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folium/plugins/timeline.py b/folium/plugins/timeline.py index a0e46dcca..fce034024 100644 --- a/folium/plugins/timeline.py +++ b/folium/plugins/timeline.py @@ -182,7 +182,7 @@ class TimelineSlider(JSCSSMixin, MacroElement): {% macro script(this, kwargs) %} var {{ this.get_name() }} = L.timelineSliderControl( - {{ this.options|tojavascript }}; + {{ this.options|tojavascript }} ); {{ this.get_name() }}.addTo({{ this._parent.get_name() }});