Skip to content

Commit 0a4738b

Browse files
committed
fix bug in calculate bad imagery count #255
1 parent 78078e6 commit 0a4738b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mapswipe_workers/mapswipe_workers/generate_stats/project_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def calc_count(row) -> List[int]:
241241
total_count = no_count + yes_count + maybe_count + bad_count
242242
assert total_count > 0, "Total count for result must be bigger than zero."
243243

244-
return [total_count, no_count, yes_count, maybe_count, no_count]
244+
return [total_count, no_count, yes_count, maybe_count, bad_count]
245245

246246

247247
def get_agg_results_by_task_id(

0 commit comments

Comments
 (0)