import streamlit as st _CSS = """ """ _HIDE_SIDEBAR_CSS = """ """ def inject_css() -> None: st.markdown(_CSS, unsafe_allow_html=True) def hide_sidebar() -> None: st.markdown(_HIDE_SIDEBAR_CSS, unsafe_allow_html=True)