Skip to content

Commit 00e806f

Browse files
committed
Making linter happy.
I'm sure non-alphabetical ordering bothers us all on a subconcious level.
1 parent bb7ccbe commit 00e806f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

folium/plugins/fast_marker_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import (absolute_import, division, print_function)
44

55
from folium.plugins.marker_cluster import MarkerCluster
6-
from folium.utilities import validate_location, if_pandas_df_convert_to_numpy
6+
from folium.utilities import if_pandas_df_convert_to_numpy, validate_location
77

88
from jinja2 import Template
99

tests/plugins/test_fast_marker_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_fast_marker_cluster():
4545
var data = {{ this.data|tojson }};
4646
var cluster = L.markerClusterGroup({{ this.options|tojson }});
4747
{%- if this.icon_create_function is not none %}
48-
cluster.options.iconCreateFunction =
48+
cluster.options.iconCreateFunction =
4949
{{ this.icon_create_function.strip() }};
5050
{%- endif %}
5151

0 commit comments

Comments
 (0)