Skip to content
This repository has been archived by the owner on Jun 16, 2018. It is now read-only.

Commit

Permalink
Fixed missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Jan 29, 2015
1 parent aec2984 commit 56e6920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wcsaxes/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def imshow(self, X, *args, **kwargs):
X = X.transpose(FLIP_TOP_BOTTOM)
kwargs['origin'] = 'lower'

super(WCSAxes, self).imshow(X, *args, **kwargs)
return super(WCSAxes, self).imshow(X, *args, **kwargs)

def reset_wcs(self, wcs=None, slices=None, transform=None, coord_meta=None):
"""
Expand Down

0 comments on commit 56e6920

Please sign in to comment.