RyanMullins commited on
Commit
898024b
1 Parent(s): 9220551

Fixing non-terminated string

Browse files
Files changed (1) hide show
  1. app.py +6 -5
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
- elif decision == 'Indeterminate':
347
- choice = f'Uncertain! {response}'
 
 
348
  else:
349
- choice = f'Incorrect. {response}'
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