Update app.py
Browse files
app.py
CHANGED
@@ -283,7 +283,6 @@ with tab_download:
|
|
283 |
if download_pdf(url, output_path):
|
284 |
st.session_state['downloaded_pdfs'][url] = output_path
|
285 |
logger.info(f"Downloaded PDF from {url} to {output_path}")
|
286 |
-
# Removed file size from history entry
|
287 |
entry = f"Downloaded PDF: {output_path}"
|
288 |
if entry not in st.session_state['history']:
|
289 |
st.session_state['history'].append(entry)
|
|
|
283 |
if download_pdf(url, output_path):
|
284 |
st.session_state['downloaded_pdfs'][url] = output_path
|
285 |
logger.info(f"Downloaded PDF from {url} to {output_path}")
|
|
|
286 |
entry = f"Downloaded PDF: {output_path}"
|
287 |
if entry not in st.session_state['history']:
|
288 |
st.session_state['history'].append(entry)
|