I’'m using st.code() inside a tab container, but the showed code will be added a tab before each line start from the second line, any way I can remove it it to let the codes aligned?
import streamlit as st
st.code('''
import streamlit as st
st.write("Hello, Streamlit!")
st.write("Hello, Streamlit!")
''',
'python')
tab1, tab2 = st.tabs(["Cat", "Dog"])
with tab1:
st.code('''
import streamlit as st
st.write("Hello, Streamlit!")
st.write("Hello, Streamlit!")
''',
'python')