Spaces:
Runtime error
Runtime error
Commit
·
74ba34a
1
Parent(s):
b3c9da2
Fix ToC import issue
Browse files- apps/article.py +1 -1
- toc.py → apps/toc.py +0 -0
apps/article.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
from apps.utils import read_markdown
|
3 |
from streamlit_tensorboard import st_tensorboard
|
4 |
-
from toc import Toc
|
5 |
def app(state):
|
6 |
toc = Toc()
|
7 |
st.title("Table of contents")
|
|
|
1 |
import streamlit as st
|
2 |
from apps.utils import read_markdown
|
3 |
from streamlit_tensorboard import st_tensorboard
|
4 |
+
from .toc import Toc
|
5 |
def app(state):
|
6 |
toc = Toc()
|
7 |
st.title("Table of contents")
|
toc.py → apps/toc.py
RENAMED
File without changes
|