mrungta8 commited on
Commit
fab34bc
·
1 Parent(s): c53b1c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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