Skip to content

Commit abbd406

Browse files
committed
remove print
1 parent 6692160 commit abbd406

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

main.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,19 +118,16 @@ def add_pr_comments() -> int:
118118

119119
# Fetch all existing comments on the PR
120120
comments = pull_request.get_comments()
121-
print(f"List all comments:\n{comments}")
122121

123122
# Track if we found a matching comment
124123
matching_comments = []
125124
last_comment = None
126125

127126
for comment in comments:
128-
print(f"List comment:\n{comment.body}")
129127
if comment.body.startswith(SUCCESS_TITLE) or comment.body.startswith(
130128
FAILURE_TITLE
131129
):
132130
matching_comments.append(comment)
133-
print(f"List all matching_comments:\n{matching_comments}")
134131
if matching_comments:
135132
last_comment = matching_comments[-1]
136133

0 commit comments

Comments
 (0)