From 1f8fdbe970eaf95a1c2c54e015e6382f5630b3c8 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Sat, 16 Nov 2024 09:12:05 -0500 Subject: [PATCH] Fix bug --- leafmap/maplibregl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leafmap/maplibregl.py b/leafmap/maplibregl.py index 87d196edc9..fbaf79b957 100644 --- a/leafmap/maplibregl.py +++ b/leafmap/maplibregl.py @@ -1402,7 +1402,7 @@ def to_html( html = html.replace(key_before, key_after) if remove_port: - html = common.common.remove_port_from_string(html) + html = common.remove_port_from_string(html) if output is None: output = os.getenv("MAPLIBRE_OUTPUT", None)