chore: remove support for settings starting with LEAFLET_STORAGE_
They are deprecated since 1.0
This commit is contained in:
parent
3e5927f65e
commit
502cd4cded
1 changed files with 1 additions and 4 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue