# Two buttons in the same line at the sidebar
col1, col2 = st.sidebar.columns(2)
with col1:
if st.button("➕ Buttom One", type="primary"):
button_one_function()
with col2:
if st.button("🧹 Buttom Two", help="help tooltip"):
st.rerun()