gchhablani commited on
Commit
74ba34a
β€’
1 Parent(s): b3c9da2

Fix ToC import issue

Browse files
Files changed (2) hide show
  1. apps/article.py +1 -1
  2. 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