ezamorag commited on
Commit
79c098f
·
1 Parent(s): 96d6467

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -50,8 +50,6 @@ def displaytext_detclasim(c_cnames, c_scinames, coverage):
50
 
51
  text = f'coverage = {coverage}'+'\n\n'
52
  text += 'Countings by scientific name:\n'
53
- countings_list = list(c_scinames.items())
54
- countings_list.sort(key = lambda x: x[1], reverse=True)
55
  for key,value in countings_list:
56
  text += f'{key} = {value}'+'\n'
57
  text += '\n\n'
 
50
 
51
  text = f'coverage = {coverage}'+'\n\n'
52
  text += 'Countings by scientific name:\n'
 
 
53
  for key,value in countings_list:
54
  text += f'{key} = {value}'+'\n'
55
  text += '\n\n'