Moibe commited on
Commit
0f8f469
·
1 Parent(s): e51b03a

Valor as variable

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -119,13 +119,15 @@ btn_buy = gr.Button("Buy More", visible=True, size='lg')
119
  # — gr.themes.Monochrome()
120
  # — gr.themes.Soft()
121
 
 
 
122
  with gr.Blocks(theme=gr.themes.Base(), css="footer {visibility: hidden}") as main:
123
 
124
  with gr.Row():
125
 
126
  gr.Label(visible=False, scale=5)
127
  gr.Label(visible=False, scale=5)
128
- lbl_credits = gr.Label(label="Credits Available", value="20", scale=1)
129
 
130
  with gr.Row():
131
 
 
119
  # — gr.themes.Monochrome()
120
  # — gr.themes.Soft()
121
 
122
+ valor = "Veinte"
123
+
124
  with gr.Blocks(theme=gr.themes.Base(), css="footer {visibility: hidden}") as main:
125
 
126
  with gr.Row():
127
 
128
  gr.Label(visible=False, scale=5)
129
  gr.Label(visible=False, scale=5)
130
+ lbl_credits = gr.Label(label="Credits Available", value=valor, scale=1)
131
 
132
  with gr.Row():
133