We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce4abe commit 2203fe7Copy full SHA for 2203fe7
devstats/reports/issue_time_to_response.md
@@ -29,7 +29,7 @@ for iss in commented_issues:
29
user = "UNKNOWN"
30
first_commenters.append(user)
31
dt = (np.datetime64(e["node"]["createdAt"]).rstrip("Z")
32
- - np.datetime64(iss["createdAt"]).rstrip("Z"))
+ - np.datetime64(iss["createdAt"].rstrip("Z")))
33
time_to_first_comment.append(dt.astype("m8[m]"))
34
break # Only want the first commenter
35
time_to_first_comment = np.array(time_to_first_comment) # in minutes
0 commit comments