Thanks to visit codestin.com Credit goes to github.com
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 d94085d commit 69b1e76Copy full SHA for 69b1e76
1 file changed
lib/matplotlib/textpath.py
@@ -7,10 +7,6 @@
7
from six.moves import zip
8
9
import warnings
10
-if six.PY3:
11
- from urllib.parse import quote as urllib_quote
12
-else:
13
- from urllib import quote as urllib_quote
14
15
import numpy as np
16
@@ -23,6 +19,7 @@
23
19
import matplotlib.dviread as dviread
24
20
from matplotlib.font_manager import FontProperties
25
21
from matplotlib.transforms import Affine2D
22
+from six.moves.urllib.parse import quote as urllib_quote
26
27
28
class TextToPath(object):
0 commit comments