Spaces:
Sleeping
Sleeping
Update dashboard.py
Browse files- dashboard.py +4 -7
dashboard.py
CHANGED
@@ -10,12 +10,12 @@ import os
|
|
10 |
import warnings
|
11 |
|
12 |
# Import pages (make sure each page has layout() function defined)
|
13 |
-
|
14 |
import about
|
15 |
import examples
|
16 |
import community
|
17 |
import user_guide
|
18 |
-
|
19 |
|
20 |
# Suppress logs and warnings
|
21 |
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
|
@@ -89,8 +89,7 @@ def login_user(email, password):
|
|
89 |
# Gradio App
|
90 |
with gr.Blocks() as demo:
|
91 |
with gr.Tabs():
|
92 |
-
|
93 |
-
home.layout()
|
94 |
|
95 |
with gr.Tab("π Login"):
|
96 |
gr.Markdown("### Login or Sign Up")
|
@@ -125,9 +124,7 @@ with gr.Blocks() as demo:
|
|
125 |
with gr.Tab("π User Guide"):
|
126 |
user_guide.layout()
|
127 |
|
128 |
-
|
129 |
-
install.layout()
|
130 |
-
|
131 |
# Launch App
|
132 |
if __name__ == "__main__":
|
133 |
demo.launch()
|
|
|
10 |
import warnings
|
11 |
|
12 |
# Import pages (make sure each page has layout() function defined)
|
13 |
+
|
14 |
import about
|
15 |
import examples
|
16 |
import community
|
17 |
import user_guide
|
18 |
+
|
19 |
|
20 |
# Suppress logs and warnings
|
21 |
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
|
|
|
89 |
# Gradio App
|
90 |
with gr.Blocks() as demo:
|
91 |
with gr.Tabs():
|
92 |
+
|
|
|
93 |
|
94 |
with gr.Tab("π Login"):
|
95 |
gr.Markdown("### Login or Sign Up")
|
|
|
124 |
with gr.Tab("π User Guide"):
|
125 |
user_guide.layout()
|
126 |
|
127 |
+
|
|
|
|
|
128 |
# Launch App
|
129 |
if __name__ == "__main__":
|
130 |
demo.launch()
|