Spaces:
Sleeping
Sleeping
Update streamlit_app.py
Browse files- 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()
|