AstraOS commited on
Commit
a0463fe
·
verified ·
1 Parent(s): 737d007

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -48,9 +48,9 @@ for directory in ["/home/user/app", "/data"]:
48
  # The Gradio app
49
  ##############################################################
50
 
51
- with gr.Blocks() as demo:
52
- gr.Interface(fn=saveFile, inputs="file", outputs="text")
53
- gr.FileExplorer(label="Working directory")
54
- gr.FileExplorer(root="/home/user/app", label="Persistent storage")
55
 
56
  demo.launch()
 
48
  # The Gradio app
49
  ##############################################################
50
 
51
+ #with gr.Blocks() as demo:
52
+ demo=[gr.Interface(fn=saveFile, inputs="file", outputs="text"),
53
+ gr.FileExplorer(label="Working directory"),
54
+ gr.FileExplorer(root="/home/user/app", label="Persistent storage")]
55
 
56
  demo.launch()