Spaces:
Runtime error
Runtime error
William_S
commited on
Commit
·
7368a9f
1
Parent(s):
c72284d
use default argument
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ demo = gr.Interface(
|
|
47 |
description=GUI_DESCRIPTION,
|
48 |
allow_flagging="never",
|
49 |
inputs=[
|
50 |
-
gr.inputs.Textbox(
|
51 |
gr.inputs.Textbox(default=datetime.now().strftime(TIME_FORMAT), label="time"),
|
52 |
],
|
53 |
outputs=[
|
|
|
47 |
description=GUI_DESCRIPTION,
|
48 |
allow_flagging="never",
|
49 |
inputs=[
|
50 |
+
gr.inputs.Textbox(default="Stockholm", label="location"),
|
51 |
gr.inputs.Textbox(default=datetime.now().strftime(TIME_FORMAT), label="time"),
|
52 |
],
|
53 |
outputs=[
|