changxin commited on
Commit
2d0a7eb
1 Parent(s): 72041df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,6 +5,6 @@ def fx(x:str):
5
  gr.Dataframe(headers=['项目','数据'],interactive=True)
6
  text_input=gr.Textbox(placeholder='请输入测试字符串',label="请输入测试内容")
7
  demo=gr.Interface(fx, inputs=text_input, outputs=gr.Textbox(label="输出"))
8
- if __name__='__main__':
9
  demo.launch(auth=lambda a,b:user_db.get(a)==b,auth_message="欢迎使用本web app")
10
 
 
5
  gr.Dataframe(headers=['项目','数据'],interactive=True)
6
  text_input=gr.Textbox(placeholder='请输入测试字符串',label="请输入测试内容")
7
  demo=gr.Interface(fx, inputs=text_input, outputs=gr.Textbox(label="输出"))
8
+ if __name__=='__main__':
9
  demo.launch(auth=lambda a,b:user_db.get(a)==b,auth_message="欢迎使用本web app")
10