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 a89f22b commit 9405a1eCopy full SHA for 9405a1e
1 file changed
lib/matplotlib/axes.py
@@ -2880,7 +2880,7 @@ def axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs):
2880
self.transAxes, self.transData)
2881
2882
# process the unit information
2883
- self._process_unit_info( [xmin, xmax], [ymin, ymax], **kwargs )
+ self._process_unit_info( [xmin, xmax], [ymin, ymax], kwargs=kwargs )
2884
2885
# first we need to strip away the units
2886
xmin, xmax = self.convert_xunits( [xmin, xmax] )
@@ -2934,7 +2934,7 @@ def axvspan(self, xmin, xmax, ymin=0, ymax=1, **kwargs):
2934
self.transData, self.transAxes)
2935
2936
2937
2938
2939
2940
0 commit comments