vmalapaka commited on
Commit
5b0a74a
1 Parent(s): 3e316c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,11 +17,11 @@ def main():
17
  with col2:
18
  st.write(file_name)
19
  with col3:
20
- send_button = st.button("Send email for {file_name}")
21
 
22
  if send_button:
23
  email_summary(file_name)
24
- st.success("Sent email for {file_name}")
25
 
26
  if __name__ == '__main__':
27
  main()
 
17
  with col2:
18
  st.write(file_name)
19
  with col3:
20
+ send_button = st.button(f"Send email for {file_name}")
21
 
22
  if send_button:
23
  email_summary(file_name)
24
+ st.success(f"Sent email for {file_name}")
25
 
26
  if __name__ == '__main__':
27
  main()