chore: remove support for settings starting with LEAFLET_STORAGE_

They are deprecated since 1.0
This commit is contained in:
Yohan Boniface 2024-01-17 11:39:06 +01:00
parent 3e5927f65e
commit 502cd4cded

View file

@ -34,10 +34,7 @@ if path:
for key in dir(d):
if key.isupper():
value = getattr(d, key)
if key.startswith("LEAFLET_STORAGE"):
# Retrocompat pre 1.0, remove me in 1.1.
globals()["UMAP" + key[15:]] = value
elif key == "UMAP_CUSTOM_TEMPLATES":
if key == "UMAP_CUSTOM_TEMPLATES":
if "DIRS" in globals()["TEMPLATES"][0]:
globals()["TEMPLATES"][0]["DIRS"].insert(0, value)
else: