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 deea685 commit 02c1c3aCopy full SHA for 02c1c3a
1 file changed
examples/user_interfaces/svg_histogram.py
@@ -35,7 +35,7 @@
35
import numpy as np
36
import matplotlib.pyplot as plt
37
import xml.etree.ElementTree as ET
38
-from StringIO import StringIO
+from io import BytesIO
39
import json
40
41
plt.rcParams['svg.embed_char_paths'] = 'none'
@@ -76,7 +76,7 @@
76
t.set_gid('leg_text_%d' % i)
77
78
# Save SVG in a fake file object.
79
-f = StringIO()
+f = BytesIO()
80
plt.savefig(f, format="svg")
81
82
# Create XML tree from the SVG file.
0 commit comments