Vish2005 commited on
Commit
7b0a13a
·
1 Parent(s): d70b6d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -46,6 +46,7 @@ datebox = gr.Textbox(label="Enter your date here:", placeholder="MM-DD-YYYY at H
46
 
47
  hwbox = gr.Textbox(label="Enter your assignment name here:", placeholder="Homework")
48
 
 
49
 
50
  def tester(str1, str2):
51
 
@@ -56,7 +57,7 @@ def tester(str1, str2):
56
  iface = gr.Interface(
57
  fn=add_elem,
58
  inputs=[datebox, hwbox],
59
- outputs="text",
60
  title="Add Work",
61
  description="Homework Prioritzer",
62
  )
 
46
 
47
  hwbox = gr.Textbox(label="Enter your assignment name here:", placeholder="Homework")
48
 
49
+ ouputbox = gr.Textbox(label="List of Assignments:", placeholder="Homework is due on MM-DD-YYYY at HH:MM", lines = 10)
50
 
51
  def tester(str1, str2):
52
 
 
57
  iface = gr.Interface(
58
  fn=add_elem,
59
  inputs=[datebox, hwbox],
60
+ outputs=ouputbox,
61
  title="Add Work",
62
  description="Homework Prioritzer",
63
  )