Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -228,13 +228,14 @@ with gr.Blocks() as demo:
|
|
| 228 |
To check your progress, type your Hugging Face Username here (in my case MariaK)
|
| 229 |
""")
|
| 230 |
|
| 231 |
-
hf_username = gr.Textbox(placeholder="bxleigh", label="Your Hugging Face Username",value="bxleigh")
|
|
|
|
| 232 |
check_progress_button = gr.Button(value="Check my progress")
|
| 233 |
|
| 234 |
def check_progress():
|
| 235 |
output.set_text(certification(hf_username.text))
|
| 236 |
|
| 237 |
check_progress_button.click(check_progress)
|
| 238 |
-
output = gr.Textbox(value="")
|
| 239 |
|
| 240 |
demo.launch()
|
|
|
|
| 228 |
To check your progress, type your Hugging Face Username here (in my case MariaK)
|
| 229 |
""")
|
| 230 |
|
| 231 |
+
hf_username = gr.Textbox(placeholder="bxleigh", label="Your Hugging Face Username", value="bxleigh")
|
| 232 |
+
|
| 233 |
check_progress_button = gr.Button(value="Check my progress")
|
| 234 |
|
| 235 |
def check_progress():
|
| 236 |
output.set_text(certification(hf_username.text))
|
| 237 |
|
| 238 |
check_progress_button.click(check_progress)
|
| 239 |
+
output = gr.Textbox(value="meow")
|
| 240 |
|
| 241 |
demo.launch()
|