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 5525440 commit 451a848Copy full SHA for 451a848
immutables/__init__.py
@@ -1,4 +1,7 @@
1
-from ._map import Map
+try:
2
+ from ._map import Map
3
+except ImportError:
4
+ from .map import Map
5
6
7
__all__ = 'Map',
0 commit comments