Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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'
|