Spaces:
Sleeping
Sleeping
Ahmad Hammoudeh
commited on
Commit
·
baa8247
1
Parent(s):
b7812bb
Update app.py
Browse files
app.py
CHANGED
|
@@ -168,7 +168,7 @@ with gr.Blocks() as demo:
|
|
| 168 |
output_text = gr.Textbox(placeholder='Output message', label='Encrypte')
|
| 169 |
|
| 170 |
result_button_encrypt.click(Encrypt_users_txt, inputs = input_text, outputs = output_text)
|
| 171 |
-
result_button_decrypt.click(Decrypt_users_txt, inputs = {'Txt':input_text , 'user_password':User_password}, outputs = output_text)
|
| 172 |
|
| 173 |
|
| 174 |
demo.queue(default_enabled = True).launch(debug = True)
|
|
|
|
| 168 |
output_text = gr.Textbox(placeholder='Output message', label='Encrypte')
|
| 169 |
|
| 170 |
result_button_encrypt.click(Encrypt_users_txt, inputs = input_text, outputs = output_text)
|
| 171 |
+
result_button_decrypt.click(Decrypt_users_txt, inputs = [{'Txt':input_text , 'user_password':User_password}], outputs = output_text)
|
| 172 |
|
| 173 |
|
| 174 |
demo.queue(default_enabled = True).launch(debug = True)
|