Skip to content

Commit 806829c

Browse files
committed
fix: fix lint isort issues in issue_metrics.py time_to_first_review.py
1 parent 7317684 commit 806829c

2 files changed

Lines changed: 6 additions & 11 deletions

File tree

issue_metrics.py

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,25 @@
2121

2222
import github3
2323
import github3.structs
24-
2524
from auth import auth_to_github, get_github_app_installation_token
2625
from classes import IssueWithMetrics
2726
from config import EnvVars, get_env_vars
2827
from discussions import get_discussions
2928
from json_writer import write_to_json
3029
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)
3232
from markdown_writer import write_to_markdown
3333
from most_active_mentors import count_comments_per_user, get_mentor_count
3434
from pr_comments import count_pr_comments, get_stats_pr_comments
3535
from search import get_owners_and_repositories, search_issues
3636
from time_in_draft import get_stats_time_in_draft, measure_time_in_draft
3737
from time_to_answer import get_stats_time_to_answer, measure_time_to_answer
3838
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)
4743
from time_to_merge import measure_time_to_merge
4844
from time_to_ready_for_review import get_time_to_ready_for_review
4945

time_to_first_review.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import github3
77
import numpy
8-
98
from classes import IssueWithMetrics
109
from time_to_first_response import ignore_comment
1110

0 commit comments

Comments
 (0)