salomonsky commited on
Commit
be4df9e
1 Parent(s): ca6ebc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -52,12 +52,12 @@ def generate_and_display_output(name, birth_date):
52
  else:
53
  return video_path, None
54
 
55
- outputs = [output]
56
 
57
  iface = gr.Interface(
58
  fn=generate_and_display_output,
59
  inputs=[name_input, birth_date],
60
- outputs=[outputs,error_output],
61
  layout="vertical",
62
  theme="darkdefault"
63
  )
 
52
  else:
53
  return video_path, None
54
 
55
+ outputs = [output, error_output]
56
 
57
  iface = gr.Interface(
58
  fn=generate_and_display_output,
59
  inputs=[name_input, birth_date],
60
+ outputs=outputs,
61
  layout="vertical",
62
  theme="darkdefault"
63
  )