From 75c352fe85d68436a8caff7329922b171ca55309 Mon Sep 17 00:00:00 2001 From: Andi Pieper Date: Thu, 12 Dec 2024 18:32:06 +0100 Subject: [PATCH] removed comment --- deployer/src/deployer/analyze_pr.py | 1 - 1 file changed, 1 deletion(-) 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!"