Runtime error

Code :
pp = pdk.Deck(
initial_view_state=view_state,
map_provider=‘mapbox’,
layers=[
layer1,
layer2,
layert1,
],
# tooltip=tooltip
)

deckchart = st.pydeck_chart(pp)
streamlit.web.bootstrap.run(“assign2.py”, ‘’, , )

Does anyone know why is that popping up and how to avoid it?

Because you are calling streamlit.web.bootstrap.run() from your Streamlit application. Don’t do that.

Thank you. Appreicate it.