alexander-lazarin commited on
Commit
8273d56
1 Parent(s): 836a3b7

Fix password, i.e. actually use the stored one

Browse files
Files changed (2) hide show
  1. Fashion_MVP_v0_0_2.ipynb +1 -1
  2. app.py +1 -1
Fashion_MVP_v0_0_2.ipynb CHANGED
@@ -650,7 +650,7 @@
650
  "source": [
651
  "#|export\n",
652
  "demo = create_gradio_app()\n",
653
- "demo.launch(debug=True, auth=(\"demo\", \"demoMVPfashion\"))\n",
654
  "# demo.close()"
655
  ]
656
  }
 
650
  "source": [
651
  "#|export\n",
652
  "demo = create_gradio_app()\n",
653
+ "demo.launch(debug=True, auth=(\"demo\", PASSWORD))\n",
654
  "# demo.close()"
655
  ]
656
  }
app.py CHANGED
@@ -354,5 +354,5 @@ def create_gradio_app():
354
 
355
  # %% Fashion_MVP_v0_0_2.ipynb 18
356
  demo = create_gradio_app()
357
- demo.launch(debug=True, auth=("demo", "demoMVPfashion"))
358
  # demo.close()
 
354
 
355
  # %% Fashion_MVP_v0_0_2.ipynb 18
356
  demo = create_gradio_app()
357
+ demo.launch(debug=True, auth=("demo", PASSWORD))
358
  # demo.close()