Spaces:
Runtime error
Runtime error
added theme configuration file
Browse files- app.py +3 -0
- config.toml +2 -0
app.py
CHANGED
|
@@ -23,6 +23,9 @@ from bs4 import BeautifulSoup
|
|
| 23 |
import matplotlib.pyplot as plt
|
| 24 |
import numpy as np
|
| 25 |
import timeit
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
|
| 28 |
def table_data():
|
|
|
|
| 23 |
import matplotlib.pyplot as plt
|
| 24 |
import numpy as np
|
| 25 |
import timeit
|
| 26 |
+
import shutil
|
| 27 |
+
|
| 28 |
+
shutil.copy("./config.toml","~/.streamlit/config.toml")
|
| 29 |
|
| 30 |
|
| 31 |
def table_data():
|
config.toml
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[theme]
|
| 2 |
+
base="dark"
|