Vish2005 commited on
Commit
2bee792
·
1 Parent(s): ef85d88

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -47,8 +47,12 @@ datebox = gr.Textbox(label="Enter your date here:", placeholder="MM-DD-YYYY at H
47
  hwbox = gr.Textbox(label="Enter your assignment name here:", placeholder="Homework")
48
 
49
 
 
 
 
 
50
  iface = gr.Interface(
51
- fn=add_elem,
52
  inputs=[datebox, hwbox],
53
  outputs="text",
54
  title="Add Work",
 
47
  hwbox = gr.Textbox(label="Enter your assignment name here:", placeholder="Homework")
48
 
49
 
50
+ def tester(str1, str2):
51
+
52
+ return str2
53
+
54
  iface = gr.Interface(
55
+ fn=tester,
56
  inputs=[datebox, hwbox],
57
  outputs="text",
58
  title="Add Work",