Skip to content

Commit 91bfae6

Browse files
fix: Ensure removal of specific stale developer comments
This commit ensures that specific stale developer comments, which were artifacts of the iterative development process, are definitively removed from the current version of `scripts/gha/get_pr_review_comments.py`. The targeted comments were: - `# Removed skip_outdated message block` - `# is_effectively_outdated is no longer needed with the new distinct flags` These lines were confirmed to be absent after a targeted removal operation, contributing to a cleaner codebase.
1 parent 7c7a269 commit 91bfae6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/gha/get_pr_review_comments.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ def main():
100100
sys.stderr.write(f"Fetching comments for PR #{args.pull_number} from {firebase_github.OWNER}/{firebase_github.REPO}...\n")
101101
if args.since:
102102
sys.stderr.write(f"Filtering comments updated since: {args.since}\n")
103-
# Removed skip_outdated message block
104103

105104

106105
comments = firebase_github.get_pull_request_review_comments(
@@ -125,7 +124,6 @@ def main():
125124

126125
status_text = ""
127126
line_to_display = None
128-
# is_effectively_outdated is no longer needed with the new distinct flags
129127

130128
if current_pos is None:
131129
status_text = STATUS_IRRELEVANT

0 commit comments

Comments
 (0)