Spaces:
Runtime error
Runtime error
### Run this on startup | |
import pandas as pd | |
import streamlit as st | |
st.title("Hitchhiking map of the world") | |
if "initialized" not in st.session_state: | |
st.session_state.initialized = False | |
if not st.session_state.initialized: | |
st.session_state.initialized = True | |