Spaces:
Running
Running
Update pages/2_CodeSimulator.py
Browse files- pages/2_CodeSimulator.py +2 -1
pages/2_CodeSimulator.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import streamlit as st
|
|
|
|
| 2 |
import io
|
| 3 |
import sys
|
| 4 |
|
|
@@ -53,4 +54,4 @@ if st.button("Run Code"):
|
|
| 53 |
if variables:
|
| 54 |
st.subheader('Variables')
|
| 55 |
for key, value in variables.items():
|
| 56 |
-
st.text(f"{key}: {value}")
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
import torch
|
| 3 |
import io
|
| 4 |
import sys
|
| 5 |
|
|
|
|
| 54 |
if variables:
|
| 55 |
st.subheader('Variables')
|
| 56 |
for key, value in variables.items():
|
| 57 |
+
st.text(f"{key}: {value}")
|