Skip to content

Commit e897b5e

Browse files
Silence the complexity-related pylint warnings
1 parent a122477 commit e897b5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

run_action.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def generate_single_comment(
189189
message,
190190
single_comment_marker,
191191
replacement_text=None,
192-
): # pylint: disable=too-many-arguments
192+
): # pylint: disable=too-many-arguments,too-many-positional-arguments
193193
result = {
194194
"path": file_path,
195195
"line": end_line_num,
@@ -413,7 +413,7 @@ def post_review_comments(
413413
review_event,
414414
review_comments,
415415
suggestions_per_comment,
416-
): # pylint: disable=too-many-arguments
416+
): # pylint: disable=too-many-arguments,too-many-positional-arguments
417417
"""Sending the Clang-Tidy review comments to GitHub"""
418418

419419
def split_into_chunks(lst, n):
@@ -468,7 +468,7 @@ def dismiss_change_requests(
468468
warning_comment_prefix,
469469
auto_resolve_conversations,
470470
single_comment_marker,
471-
): # pylint: disable=too-many-arguments
471+
): # pylint: disable=too-many-arguments,too-many-positional-arguments
472472
"""Dismissing stale Clang-Tidy requests for changes"""
473473

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

0 commit comments

Comments
 (0)