You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug summary
Calling axes.barh will throw this error if the height of the bars are given as a dictonary values type TypeError: unsupported operand type(s) for +: 'int' and 'dict_values'
Code for reproduction
importmatplotlib.pyplotaspltdata= {'cats': 10, 'dogs': 20}
# Works as expectedfig, ax=plt.subplots(1)
ax.bar(range(len(data)), data.values())
# Doesn't workfig, ax=plt.subplots(1)
ax.barh(range(len(data)), data.values())
# Works as expectedfig, ax=plt.subplots(1)
ax.barh(range(len(data)), list(data.values()))
plt.show()