remove explicit else-pass

This commit is contained in:
James Logan 2022-08-25 11:57:36 -04:00
parent 00f0571906
commit bd2bab3f56

View file

@ -368,8 +368,6 @@ class Universe(UniverseBase):
width = pixels[0]*px/(params.right - params.left)
height = pixels[0]*px/(params.top - params.bottom)
fig.set_size_inches(width, height)
else:
pass
# Plot image and return the axes
return axes.imshow(img, extent=(x_min, x_max, y_min, y_max), **kwargs)