Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
|
2 |
import streamlit as st
|
3 |
from io import BytesIO
|
4 |
|
@@ -46,4 +45,4 @@ div.markdown("""
|
|
46 |
# Add the uploaded files to the div and make it move around the screen
|
47 |
if file_list:
|
48 |
for file in file_list:
|
49 |
-
div.markdown(f'<div class="sticky">{file}</div>', unsafe_allow_html=True)
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from io import BytesIO
|
3 |
|
|
|
45 |
# Add the uploaded files to the div and make it move around the screen
|
46 |
if file_list:
|
47 |
for file in file_list:
|
48 |
+
div.markdown(f'<div class="sticky">{file.name}</div>', unsafe_allow_html=True)
|