chris-rannou HF staff commited on
Commit
24bdecb
·
1 Parent(s): bfced57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def eat_memory():
19
 
20
  def greet(name):
21
  # some comments 3
22
- return "Hello " + name + "!!"
23
 
24
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
25
  iface.launch()
 
19
 
20
  def greet(name):
21
  # some comments 3
22
+ return "Hello " + name + "!! secret: " + os.environ.get("TEST_ENV_SECRET")
23
 
24
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
25
  iface.launch()