Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -143,7 +143,7 @@ def make_html(inp_files):
|
|
143 |
html_out=f"<style>{css}</style><div class='img_box'>"
|
144 |
for ea in inp_files:
|
145 |
print(ea)
|
146 |
-
html_out+=f'<div class="img_class"><img src="{ea}"></div>'
|
147 |
html_out+='</div>'
|
148 |
return html_out
|
149 |
|
|
|
143 |
html_out=f"<style>{css}</style><div class='img_box'>"
|
144 |
for ea in inp_files:
|
145 |
print(ea)
|
146 |
+
html_out+=f'<div class="img_class"><img src="file={ea}"></div>'
|
147 |
html_out+='</div>'
|
148 |
return html_out
|
149 |
|