We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2207feb commit 649f7d5Copy full SHA for 649f7d5
app.py
@@ -470,9 +470,9 @@ def record_breakdown(
470
open_priority_bugs, key=lambda x: x["createdAt"]
471
),
472
"issue_count": len(created_priority_bugs),
473
- "priority_percentage": round(
+ "priority_percentage": int(round(
474
len(completed_priority_bugs) / total_completed_issues * 100
475
- ) if total_completed_issues else 0,
+ )) if total_completed_issues else 0,
476
"leaderboard_entries": leaderboard_entries,
477
"all_issues": created_priority_bugs + open_priority_bugs,
478
"issues_by_platform": by_platform(created_priority_bugs),
0 commit comments