Matplotlib - Image Display
Identify the mistake in this code snippet that attempts to display an image:
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread('photo.jpg')
plt.imshow(img)
plt.colorbar
plt.show()