Skip to content

Commit

Permalink
Silence the complexity-related pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-derevenetz committed Oct 16, 2024
1 parent a122477 commit e897b5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def generate_single_comment(
message,
single_comment_marker,
replacement_text=None,
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-arguments,too-many-positional-arguments
result = {
"path": file_path,
"line": end_line_num,
Expand Down Expand Up @@ -413,7 +413,7 @@ def post_review_comments(
review_event,
review_comments,
suggestions_per_comment,
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-arguments,too-many-positional-arguments
"""Sending the Clang-Tidy review comments to GitHub"""

def split_into_chunks(lst, n):
Expand Down Expand Up @@ -468,7 +468,7 @@ def dismiss_change_requests(
warning_comment_prefix,
auto_resolve_conversations,
single_comment_marker,
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-arguments,too-many-positional-arguments
"""Dismissing stale Clang-Tidy requests for changes"""

print("Checking if there are any stale requests for changes to dismiss...")
Expand Down

0 comments on commit e897b5e

Please sign in to comment.