From 8f2deb88cb58ae00e467d71528a8cf4c0a254a22 Mon Sep 17 00:00:00 2001 From: Hans Then Date: Sat, 4 Jan 2025 11:56:04 +0100 Subject: [PATCH] Fix javascript template (#2071) --- 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() }});