harrygens commited on
Commit
451c271
1 Parent(s): 633a011

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,7 +52,7 @@ def getChooseClass(msg):
52
  if full != "":
53
  start_index = full.index(" ") + len(" ")
54
  end_index = msg.index(",")
55
- str = full[start_index:] + full[:end_index])
56
  str = str.strip()
57
  return str
58
  else:
 
52
  if full != "":
53
  start_index = full.index(" ") + len(" ")
54
  end_index = msg.index(",")
55
+ str = full[start_index:] + full[:end_index]
56
  str = str.strip()
57
  return str
58
  else: