``` from pylab import * fig, axs = plt.subplots(2) axs[0].imshow(np.random.rand(32, 32), extent=(10, 0, 0, 10)) img = axs[1].imshow(np.random.rand(32, 32), extent=(10, 0, 0, 10)) fig.colorbar(img, ax=list(axs)) plt.show() ```  (click on the image to confirm that it is indeed mis-centered)