IJ-Reynolds HF Staff commited on
Commit
5d4f50f
·
verified ·
1 Parent(s): 37103dc

Update streamlit_app.py

Browse files
Files changed (1) hide show
  1. streamlit_app.py +1 -1
streamlit_app.py CHANGED
@@ -140,7 +140,7 @@ with st.sidebar:
140
  last_sync_str = "Pending First Run"
141
  if df is not None and not df.empty and 'date_collected' in df.columns:
142
  last_sync_dt = pd.to_datetime(df['date_collected']).max()
143
- last_sync_str = last_sync_dt.strftime('%b %d, %I:%M %p')
144
  st.info(f"**Auto-Pilot:** Active (12h Cycle)\n\n**Last Sync:** {last_sync_str}")
145
 
146
  st.divider()
 
140
  last_sync_str = "Pending First Run"
141
  if df is not None and not df.empty and 'date_collected' in df.columns:
142
  last_sync_dt = pd.to_datetime(df['date_collected']).max()
143
+ last_sync_str = last_sync_dt.strftime('%b %d, %I:%M %p UTC')
144
  st.info(f"**Auto-Pilot:** Active (12h Cycle)\n\n**Last Sync:** {last_sync_str}")
145
 
146
  st.divider()