Spaces:
Sleeping
Sleeping
Update my_model/utilities/ui_manager.py
Browse files
my_model/utilities/ui_manager.py
CHANGED
|
@@ -26,13 +26,9 @@ class UIManager:
|
|
| 26 |
|
| 27 |
def display_sidebar(self):
|
| 28 |
"""Displays the sidebar for navigation."""
|
| 29 |
-
|
| 30 |
-
st.sidebar.image("Files/logo.png", use_column_width=True)
|
| 31 |
-
st.write("")
|
| 32 |
-
st.write("")
|
| 33 |
-
st.sidebar.title("Navigation")
|
| 34 |
-
selection = st.sidebar.radio("Go to:", list(self.tabs.keys()))
|
| 35 |
|
|
|
|
|
|
|
| 36 |
return selection
|
| 37 |
|
| 38 |
|
|
|
|
| 26 |
|
| 27 |
def display_sidebar(self):
|
| 28 |
"""Displays the sidebar for navigation."""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
+
st.sidebar.title("Navigation")
|
| 31 |
+
selection = st.sidebar.radio("Go to", list(self.tabs.keys()))
|
| 32 |
return selection
|
| 33 |
|
| 34 |
|