Spaces:
Running
Running
nice
Browse files
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
|
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 |
|