Spaces:
Runtime error
Runtime error
update
Browse files- .gitignore +0 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -1,2 +1 @@
|
|
1 |
-
|
2 |
/backup
|
|
|
|
|
1 |
/backup
|
app.py
CHANGED
@@ -139,7 +139,7 @@ with gr.Blocks() as demo:
|
|
139 |
# Home page elements
|
140 |
title = gr.Markdown(value="**AWS Exam Simulator (Quiz)**")
|
141 |
description = gr.Markdown(value=description_str)
|
142 |
-
exam_selector = gr.Dropdown(label="Select an exam", choices=exams)
|
143 |
audio_checkbox = gr.Checkbox(label="Enable Audio", value=True)
|
144 |
start_button = gr.Button("Start Exam")
|
145 |
|
|
|
139 |
# Home page elements
|
140 |
title = gr.Markdown(value="**AWS Exam Simulator (Quiz)**")
|
141 |
description = gr.Markdown(value=description_str)
|
142 |
+
exam_selector = gr.Dropdown(label="Select an exam", choices=exams, value='AWS')
|
143 |
audio_checkbox = gr.Checkbox(label="Enable Audio", value=True)
|
144 |
start_button = gr.Button("Start Exam")
|
145 |
|