Cropinky commited on
Commit
a1b1972
1 Parent(s): 6488bc2
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def load_model():
14
  def load_rappers():
15
  text_file = open("rappers.txt")
16
  rappers = text_file.readlines()
17
- rappers = [name[:-1] for name in reperi]
18
  rappers.sort()
19
  return rappers
20
 
 
14
  def load_rappers():
15
  text_file = open("rappers.txt")
16
  rappers = text_file.readlines()
17
+ rappers = [name[:-1] for name in rappers]
18
  rappers.sort()
19
  return rappers
20