BarBar288 commited on
Commit
0fcaa6e
·
verified ·
1 Parent(s): 2bef261

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,7 +38,7 @@ def generate_password(char_type, length):
38
  iface = gr.Interface(
39
  fn=generate_password,
40
  inputs=[
41
- gr.Dropdown(list(options.keys()), label="Choose the character set you want to use for your password", value='14'),
42
  gr.Slider(1, 50, step=1, label="Enter the desired length of your password", value=12)
43
  ],
44
  outputs="text",
 
38
  iface = gr.Interface(
39
  fn=generate_password,
40
  inputs=[
41
+ gr.Dropdown(list(options, label="Choose the character set you want to use for your password", value=options[14]),
42
  gr.Slider(1, 50, step=1, label="Enter the desired length of your password", value=12)
43
  ],
44
  outputs="text",