Matplotlib - Real-World Visualization Patterns
Find the error in this code:
import matplotlib.pyplot as plt
plt.style.use('colorblind')
plt.plot([1,2,3], [4,5,6])
plt.show()