JP1
1
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?
Goyo
2
Because you are calling streamlit.web.bootstrap.run() from your Streamlit application. Don’t do that.
JP1
3
Thank you. Appreicate it.
system
Closed
4
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.