Merge pull request #1542 from umap-project/unsupport-leaflet-storage-settings
chore: remove support for settings starting with LEAFLET_STORAGE_
This commit is contained in:
commit
ab73fde85e
1 changed files with 1 additions and 4 deletions
|
@ -34,10 +34,7 @@ if path:
|
||||||
for key in dir(d):
|
for key in dir(d):
|
||||||
if key.isupper():
|
if key.isupper():
|
||||||
value = getattr(d, key)
|
value = getattr(d, key)
|
||||||
if key.startswith("LEAFLET_STORAGE"):
|
if key == "UMAP_CUSTOM_TEMPLATES":
|
||||||
# Retrocompat pre 1.0, remove me in 1.1.
|
|
||||||
globals()["UMAP" + key[15:]] = value
|
|
||||||
elif key == "UMAP_CUSTOM_TEMPLATES":
|
|
||||||
if "DIRS" in globals()["TEMPLATES"][0]:
|
if "DIRS" in globals()["TEMPLATES"][0]:
|
||||||
globals()["TEMPLATES"][0]["DIRS"].insert(0, value)
|
globals()["TEMPLATES"][0]["DIRS"].insert(0, value)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue