SmilingWolf commited on
Commit
965c326
1 Parent(s): eaba46a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -219,7 +219,7 @@ class Predictor:
219
  )
220
  sorted_general_strings = [x[0] for x in sorted_general_strings]
221
  sorted_general_strings = (
222
- ", ".join(sorted_general_strings).replace("(", "\\(").replace(")", "\\)")
223
  )
224
 
225
  return sorted_general_strings, rating, character_res, general_res
 
219
  )
220
  sorted_general_strings = [x[0] for x in sorted_general_strings]
221
  sorted_general_strings = (
222
+ ", ".join(sorted_general_strings).replace("(", r"\(").replace(")", r"\)")
223
  )
224
 
225
  return sorted_general_strings, rating, character_res, general_res