Nechba commited on
Commit
1e664c0
·
verified ·
1 Parent(s): 43009a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -138,10 +138,7 @@ if uploaded_files and api_key:
138
 
139
  # Display results in expandable section
140
  with st.expander("View Analysis Results", expanded=True):
141
- if csv_data:
142
-
143
- print(f"DataFrame: {df}")
144
- if not df.empty:
145
  st.dataframe(df)
146
  excel_buffer = BytesIO()
147
  df.to_excel(excel_buffer, index=False)
 
138
 
139
  # Display results in expandable section
140
  with st.expander("View Analysis Results", expanded=True):
141
+ if not df.empty:
 
 
 
142
  st.dataframe(df)
143
  excel_buffer = BytesIO()
144
  df.to_excel(excel_buffer, index=False)