From a1bab0538f91ea907176dc32c268c1f9d681dd24 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Wed, 23 Oct 2024 21:28:56 -0700 Subject: [PATCH] Update time_in_draft.py Co-authored-by: JM (Jason Meridth) --- time_in_draft.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time_in_draft.py b/time_in_draft.py index db6f500..34c30cc 100644 --- a/time_in_draft.py +++ b/time_in_draft.py @@ -50,7 +50,7 @@ def get_stats_time_in_draft( if issue.time_in_draft: draft_times.append(issue.time_in_draft.total_seconds()) - # Calculate stats describing time to answer + # Calculate stats describing time in draft num_issues_with_time_in_draft = len(issues_with_time_to_draft) if num_issues_with_time_in_draft > 0: average_time_in_draft = numpy.round(numpy.average(draft_times))