gchhablani commited on
Commit
ea304d0
1 Parent(s): fb3c77c

Move logo to sidebar

Browse files
Files changed (1) hide show
  1. multiapp.py +1 -1
multiapp.py CHANGED
@@ -10,7 +10,7 @@ class MultiApp:
10
  self.apps.append({"title": title, "function": func})
11
 
12
  def run(self):
13
- logo = st.image("./misc/mvqa-logo-3-white.png")
14
  st.sidebar.header("Tasks")
15
  app = st.sidebar.radio(
16
  "", self.apps, format_func=lambda app: app["title"]
 
10
  self.apps.append({"title": title, "function": func})
11
 
12
  def run(self):
13
+ logo = st.sidebar.image("./misc/mvqa-logo-3-white.png")
14
  st.sidebar.header("Tasks")
15
  app = st.sidebar.radio(
16
  "", self.apps, format_func=lambda app: app["title"]