Update app.py
Browse files
app.py
CHANGED
|
@@ -156,9 +156,9 @@ def load_html(inp):
|
|
| 156 |
if inp:
|
| 157 |
for ea in inp:
|
| 158 |
outp,prom=ea
|
| 159 |
-
ht+=f"""<div>
|
| 160 |
-
<pre>{outp}</pre>
|
| 161 |
-
<pre>{prom}</pre>
|
| 162 |
</div>"""
|
| 163 |
with open('index.html','r') as h:
|
| 164 |
html=h.read()
|
|
|
|
| 156 |
if inp:
|
| 157 |
for ea in inp:
|
| 158 |
outp,prom=ea
|
| 159 |
+
ht+=f"""<div class="div_box">
|
| 160 |
+
<pre class="resp">{outp}</pre>
|
| 161 |
+
<pre class="resp">{prom}</pre>
|
| 162 |
</div>"""
|
| 163 |
with open('index.html','r') as h:
|
| 164 |
html=h.read()
|