Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
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",
|