Spaces:
Runtime error
Runtime error
Commit
·
2f624f6
1
Parent(s):
31ef08e
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
from bcogsphere import bcs
|
|
|
3 |
|
4 |
-
iface = gr.Interface(fn=bcs, inputs="text", outputs="text")
|
5 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
from bcogsphere import bcs
|
3 |
+
css="footer {visibility: hidden}"
|
4 |
|
5 |
+
iface = gr.Interface(fn=bcs, inputs="text", outputs="text", css=css)
|
6 |
iface.launch()
|