|
21 | 21 |
|
22 | 22 | import github3 |
23 | 23 | import github3.structs |
24 | | - |
25 | 24 | from auth import auth_to_github, get_github_app_installation_token |
26 | 25 | from classes import IssueWithMetrics |
27 | 26 | from config import EnvVars, get_env_vars |
28 | 27 | from discussions import get_discussions |
29 | 28 | from json_writer import write_to_json |
30 | 29 | from labels import get_label_metrics, get_stats_time_in_labels |
31 | | -from markdown_helpers import markdown_too_large_for_issue_body, split_markdown_file |
| 30 | +from markdown_helpers import (markdown_too_large_for_issue_body, |
| 31 | + split_markdown_file) |
32 | 32 | from markdown_writer import write_to_markdown |
33 | 33 | from most_active_mentors import count_comments_per_user, get_mentor_count |
34 | 34 | from pr_comments import count_pr_comments, get_stats_pr_comments |
35 | 35 | from search import get_owners_and_repositories, search_issues |
36 | 36 | from time_in_draft import get_stats_time_in_draft, measure_time_in_draft |
37 | 37 | from time_to_answer import get_stats_time_to_answer, measure_time_to_answer |
38 | 38 | from time_to_close import get_stats_time_to_close, measure_time_to_close |
39 | | -from time_to_first_response import ( |
40 | | - get_stats_time_to_first_response, |
41 | | - measure_time_to_first_response, |
42 | | -) |
43 | | -from time_to_first_review import ( |
44 | | - get_stats_time_to_first_review, |
45 | | - measure_time_to_first_review, |
46 | | -) |
| 39 | +from time_to_first_response import (get_stats_time_to_first_response, |
| 40 | + measure_time_to_first_response) |
| 41 | +from time_to_first_review import (get_stats_time_to_first_review, |
| 42 | + measure_time_to_first_review) |
47 | 43 | from time_to_merge import measure_time_to_merge |
48 | 44 | from time_to_ready_for_review import get_time_to_ready_for_review |
49 | 45 |
|
|
0 commit comments