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 3cde19b commit fa41855Copy full SHA for fa41855
test/test_pandas_dataframe.py
@@ -1,6 +1,6 @@
1
import matplotlib.pyplot as plt
2
-import pandas as pd
3
+import pandas as pd
4
from helpers import assert_equality
5
6
tikzplotlib/axes.py
@@ -1,11 +1,14 @@
import matplotlib as mpl
import numpy
-from matplotlib.backends.backend_pgf import common_texification as mpl_common_texification
+from matplotlib.backends.backend_pgf import (
+ common_texification as mpl_common_texification,
+)
7
from . import color
8
9
10
def _common_texification(string):
11
+ # Work around <https://github.com/matplotlib/matplotlib/issues/15493>
12
return mpl_common_texification(string).replace("&", "\\&")
13
14
0 commit comments