Spaces:
Runtime error
Runtime error
added theme configuration file
Browse files
app.py
CHANGED
@@ -25,9 +25,11 @@ import numpy as np
|
|
25 |
import timeit
|
26 |
import shutil
|
27 |
|
28 |
-
os.mkdir("~/.streamlit/")
|
29 |
-
shutil.copy("./config.toml","~/.streamlit/config.toml")
|
30 |
-
|
|
|
|
|
31 |
|
32 |
def table_data():
|
33 |
# creating table data
|
|
|
25 |
import timeit
|
26 |
import shutil
|
27 |
|
28 |
+
# os.mkdir("~/.streamlit/")
|
29 |
+
# shutil.copy("./config.toml","~/.streamlit/config.toml")
|
30 |
+
res=os.getcwd()
|
31 |
+
st.markdown('#### Current path is: <span style="color:blue">{}</span>'.format(
|
32 |
+
res), unsafe_allow_html=True)
|
33 |
|
34 |
def table_data():
|
35 |
# creating table data
|