We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838c82c commit 18b68ecCopy full SHA for 18b68ec
Magics/__init__.py
@@ -2,4 +2,4 @@
2
3
from .Magics import * # noqa
4
5
-__version__ = "1.5.6"
+__version__ = "1.5.7"
Magics/macro.py
@@ -724,9 +724,9 @@ def version():
724
def predefined_areas():
725
with LOCK:
726
home = Magics.home()
727
- with open("%s/share/magics/projections.json" % (home.decode())) as input:
+ with open("%s/share/magics/styles/projections.json" % (home.decode())) as input:
728
projections = json.load(input)
729
- return projections.keys()
+ return list(projections.keys())
730
731
732
def wmscrs():
0 commit comments