raannakasturi commited on
Commit
5b1ac8b
·
1 Parent(s): 1f9e9c1

refactor: Update variable names in app.py for clarity

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -48,8 +48,8 @@ def app():
48
  pvt = gr.Textbox(label="Your Private Key", placeholder="Your Private Key will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
49
  pvtfile = gr.File(label="Download your Private Key")
50
  with gr.Column():
51
- csr = gr.Textbox(label="Your SSL Certificate", placeholder="Your SSL Certificate will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
52
- csrfile = gr.File(label="Download your SSL Certificate")
53
  with gr.Column():
54
  crt = gr.Textbox(label="Your SSL Certificate", placeholder="Your SSL Certificate will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
55
  crtfile = gr.File(label="Download your SSL Certificate")
 
48
  pvt = gr.Textbox(label="Your Private Key", placeholder="Your Private Key will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
49
  pvtfile = gr.File(label="Download your Private Key")
50
  with gr.Column():
51
+ csr = gr.Textbox(label="Your CSR", placeholder="Your CSR will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
52
+ csrfile = gr.File(label="Download your CSR")
53
  with gr.Column():
54
  crt = gr.Textbox(label="Your SSL Certificate", placeholder="Your SSL Certificate will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
55
  crtfile = gr.File(label="Download your SSL Certificate")