Spaces:
Running
on
L40S
Running
on
L40S
RyanMullins
commited on
Commit
•
898024b
1
Parent(s):
9220551
Fixing non-terminated string
Browse files
app.py
CHANGED
@@ -340,13 +340,14 @@ with gr.Blocks() as demo:
|
|
340 |
|
341 |
for (response, decision) in _ANSWERS:
|
342 |
if decision == "Watermarked":
|
343 |
-
value.append(choice)
|
344 |
if response in user_selections:
|
345 |
-
choice = f'Correct! {response}
|
346 |
-
|
347 |
-
|
|
|
|
|
348 |
else:
|
349 |
-
choice =
|
350 |
|
351 |
choices.append(choice)
|
352 |
|
|
|
340 |
|
341 |
for (response, decision) in _ANSWERS:
|
342 |
if decision == "Watermarked":
|
|
|
343 |
if response in user_selections:
|
344 |
+
choice = f'Correct! {response}'
|
345 |
+
else:
|
346 |
+
choice = response
|
347 |
+
|
348 |
+
value.append(choice)
|
349 |
else:
|
350 |
+
choice = response
|
351 |
|
352 |
choices.append(choice)
|
353 |
|