Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ def displaytext_detclasim(c_cnames, c_scinames, coverage):
|
|
| 60 |
total += c
|
| 61 |
|
| 62 |
free = 100-int(coverage.split('.')[0])
|
| 63 |
-
text = f'free space = {free}'+'\n\n'
|
| 64 |
text += 'Countings by scientific name:\n'
|
| 65 |
for key,value in countings_list:
|
| 66 |
text += f'{key} = {value}'+'\n'
|
|
@@ -83,7 +83,7 @@ def displaytext_yolocounter(countings, coverage):
|
|
| 83 |
total += c
|
| 84 |
|
| 85 |
free = 100-int(coverage.split('.')[0])
|
| 86 |
-
text = f'free space = {free}'+'\n\n'
|
| 87 |
for key,value in countings_list:
|
| 88 |
text += f'{key} = {value}'+'\n'
|
| 89 |
text += '\n'
|
|
|
|
| 60 |
total += c
|
| 61 |
|
| 62 |
free = 100-int(coverage.split('.')[0])
|
| 63 |
+
text = f'free space = {free}%'+'\n\n'
|
| 64 |
text += 'Countings by scientific name:\n'
|
| 65 |
for key,value in countings_list:
|
| 66 |
text += f'{key} = {value}'+'\n'
|
|
|
|
| 83 |
total += c
|
| 84 |
|
| 85 |
free = 100-int(coverage.split('.')[0])
|
| 86 |
+
text = f'free space = {free}%'+'\n\n'
|
| 87 |
for key,value in countings_list:
|
| 88 |
text += f'{key} = {value}'+'\n'
|
| 89 |
text += '\n'
|