Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ mean_citation_list = []
|
|
19 |
# Open the file and read the content in a list
|
20 |
with open('mean_citation_list.txt', 'r') as filehandle:
|
21 |
for line in filehandle:
|
22 |
-
temp = line[:-1]
|
23 |
mean_citation_list.append(temp)
|
24 |
|
25 |
# # Read list to memory
|
|
|
19 |
# Open the file and read the content in a list
|
20 |
with open('mean_citation_list.txt', 'r') as filehandle:
|
21 |
for line in filehandle:
|
22 |
+
temp = float(line[:-1])
|
23 |
mean_citation_list.append(temp)
|
24 |
|
25 |
# # Read list to memory
|