Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ class GUI:
|
|
8 |
self.l_o_btn = gr.LogoutButton(visible=False)
|
9 |
self.inp = gr.File(file_types=['.epub'], visible=False)
|
10 |
self.out = gr.Markdown().attach_load_event(self.hello, None)
|
11 |
-
inp.change(self.hello, self.inp, self.out)
|
12 |
|
13 |
demo.launch()
|
14 |
|
|
|
8 |
self.l_o_btn = gr.LogoutButton(visible=False)
|
9 |
self.inp = gr.File(file_types=['.epub'], visible=False)
|
10 |
self.out = gr.Markdown().attach_load_event(self.hello, None)
|
11 |
+
self.inp.change(self.hello, self.inp, self.out)
|
12 |
|
13 |
demo.launch()
|
14 |
|