Skip to content

Commit 3f07bff

Browse files
committed
FIX: order of kwargs [skip ci]
1 parent 5b930f3 commit 3f07bff

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5487,9 +5487,10 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
54875487
if aspect is None:
54885488
aspect = rcParams['image.aspect']
54895489
self.set_aspect(aspect)
5490-
im = mimage.AxesImage(self, cmap, norm, interpolation, interp_space,
5490+
im = mimage.AxesImage(self, cmap, norm, interpolation,
54915491
origin, extent, filternorm=filternorm,
5492-
filterrad=filterrad, resample=resample, **kwargs)
5492+
filterrad=filterrad, resample=resample,
5493+
interp_space=interp_space,**kwargs)
54935494

54945495
im.set_data(X)
54955496
im.set_alpha(alpha)

0 commit comments

Comments
 (0)