Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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
|
| 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",
|