QuantumLearner commited on
Commit
e4135eb
·
verified ·
1 Parent(s): b369eab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -191,9 +191,11 @@ if run_button:
191
  house_data = house_data[reordered_house_cols]
192
 
193
  st.subheader("Senate Data")
 
194
  st.dataframe(senate_data, use_container_width=True)
195
 
196
  st.subheader("House Data")
 
197
  st.dataframe(house_data, use_container_width=True)
198
 
199
  else:
 
191
  house_data = house_data[reordered_house_cols]
192
 
193
  st.subheader("Senate Data")
194
+ st.write("Latest Transaction in Senate. Please sort the table by **`disclosureDate`** and / or **`dateRecieved`** columns.")
195
  st.dataframe(senate_data, use_container_width=True)
196
 
197
  st.subheader("House Data")
198
+ st.write("Latest Transaction in House. Please sort the table by the **`disclosureDate`** and / or **`transactionDate`** columns. ")
199
  st.dataframe(house_data, use_container_width=True)
200
 
201
  else: