Add horizontal lines to a boxplots chart

Hello,
I’m trying to add horizontal lines to the plot below at y=20 without success.

Thanks for the help!

import plotly.express as px
tips = px.data.tips()
fig = px.box(tips, x="time", y="total_bill")
fig.show()