Update
Browse files
app.py
CHANGED
@@ -102,7 +102,7 @@ fixed_by_cat = dict()
|
|
102 |
for bug_id in fixed_bug_ids:
|
103 |
fixed_by_cat[bug_id_to_type[bug_id]] = fixed_by_cat.get(bug_id_to_type[bug_id], 0) + 1
|
104 |
fixed_by_cat["All"] = len(fixed_bug_ids)
|
105 |
-
bug_id_by_cat["All"] = total_issues
|
106 |
fixed_by_cat_df = pd.DataFrame(
|
107 |
{
|
108 |
"Category": [str(cat).capitalize() for cat in fixed_by_cat.keys()],
|
|
|
102 |
for bug_id in fixed_bug_ids:
|
103 |
fixed_by_cat[bug_id_to_type[bug_id]] = fixed_by_cat.get(bug_id_to_type[bug_id], 0) + 1
|
104 |
fixed_by_cat["All"] = len(fixed_bug_ids)
|
105 |
+
bug_id_by_cat["All"] = [0] * total_issues
|
106 |
fixed_by_cat_df = pd.DataFrame(
|
107 |
{
|
108 |
"Category": [str(cat).capitalize() for cat in fixed_by_cat.keys()],
|