Skip to content

Commit e84b02d

Browse files
fix: Correct IndentationError in get_pr_review_comments.py
This commit fixes an IndentationError in the `scripts/gha/get_pr_review_comments.py` script. The error was caused by a malformed comment on the final print statement within the main loop. The stray comment has been removed and the print statement's newline character has been ensured. This resolves the syntax error and allows the script to be parsed and executed correctly.
1 parent 0678049 commit e84b02d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/gha/get_pr_review_comments.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,7 @@ def main():
170170

171171
print("--- Comment ---")
172172
print(body)
173-
print("----------------------------------------\n") # Use
174-
for newline
173+
print("----------------------------------------\n")
175174

176175
if __name__ == "__main__":
177176
main()

0 commit comments

Comments
 (0)