RakanAlsheraiwi commited on
Commit
012d093
·
verified ·
1 Parent(s): a0fc3f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ def generate_password(length):
30
  # Gradio interface
31
  interface = gr.Interface(
32
  fn=generate_password,
33
- inputs=gr.Slider(8, 32, step=1, default=12, label="Password Length"),
34
  outputs="text",
35
  title="Password Generator",
36
  description="Generate a strong, unique password by selecting the desired length."
 
30
  # Gradio interface
31
  interface = gr.Interface(
32
  fn=generate_password,
33
+ inputs=gr.Slider(minimum=8, maximum=32, step=1, value=12, label="Password Length"),
34
  outputs="text",
35
  title="Password Generator",
36
  description="Generate a strong, unique password by selecting the desired length."