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.
2 parents 246dd6c + 0aa6b53 commit acfa006Copy full SHA for acfa006
lib/mpl_toolkits/basemap/proj.py
@@ -3,7 +3,12 @@
3
import numpy as np
4
import pyproj
5
import math
6
-from matplotlib.cbook import dedent
+try:
7
+ from inspect import cleandoc as dedent
8
+except ImportError:
9
+ # Deprecated as of version 3.1. Not quite the same
10
+ # as textwrap.dedent.
11
+ from matplotlib.cbook import dedent
12
13
__version__ = '1.2.2'
14
_dg2rad = math.radians(1.)
0 commit comments