Spaces:
Running
Running
Commit
·
cabdc7a
1
Parent(s):
6aaa0db
add requiretment
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ def greet(name):
|
|
10 |
output_string = result.stdout
|
11 |
error_string = result.stderr
|
12 |
|
13 |
-
output_string, error_string= run_command("
|
14 |
return "Hello " + output_string + error_string + "!"
|
15 |
|
16 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
|
|
10 |
output_string = result.stdout
|
11 |
error_string = result.stderr
|
12 |
|
13 |
+
output_string, error_string= run_command("pwd")
|
14 |
return "Hello " + output_string + error_string + "!"
|
15 |
|
16 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|