diff --git a/deployer/src/deployer/analyze_pr.py b/deployer/src/deployer/analyze_pr.py index aa0fe33eb304..0159d2b0fa57 100644 --- a/deployer/src/deployer/analyze_pr.py +++ b/deployer/src/deployer/analyze_pr.py @@ -86,7 +86,6 @@ def analyze_pr(build_directory: Path, config): return combined_comment -# Truncates the content of a comment if it exceeds the maximum length of 64k (a GH API constraint). def truncate_comment(comment): if len(comment) > MAX_COMMENT_BODY_LENGTH: return comment[:MAX_COMMENT_BODY_LENGTH] + "…\n\nTRUNCATED!"