jhj0517 commited on
Commit
e5d2146
·
1 Parent(s): 3d1dda1

Fix default value of share

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -208,7 +208,7 @@ if __name__ == "__main__":
208
  help='Output directory for the results')
209
  parser.add_argument('--inbrowser', type=bool, default=True, nargs='?', const=True,
210
  help='Whether to automatically start Gradio app or not')
211
- parser.add_argument('--share', type=bool, default=True, nargs='?', const=False,
212
  help='Whether to create a public link for the app or not')
213
  args = parser.parse_args()
214
 
 
208
  help='Output directory for the results')
209
  parser.add_argument('--inbrowser', type=bool, default=True, nargs='?', const=True,
210
  help='Whether to automatically start Gradio app or not')
211
+ parser.add_argument('--share', type=bool, default=False, nargs='?', const=True,
212
  help='Whether to create a public link for the app or not')
213
  args = parser.parse_args()
214