From 5295abbb833edb06dd7794eaedbdd6c28cb5081d Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 18 Nov 2024 07:46:23 -0800 Subject: [PATCH] style: Move #noqa comments to triple-quoted strings in issues.py --- scripts/issues.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/issues.py b/scripts/issues.py index 9251d9ccf..a03696f9b 100755 --- a/scripts/issues.py +++ b/scripts/issues.py @@ -38,14 +38,14 @@ I'm going to close this issue for now. But please let me know if you think this ) # noqa STALE_COMMENT = ( - """I'm labeling this issue as stale because it has been open for 2 weeks with no activity. If there are no additional comments, I will close it in 7 days.""" + """I'm labeling this issue as stale because it has been open for 2 weeks with no activity. If there are no additional comments, I will close it in 7 days.""" # noqa + BOT_SUFFIX -) # noqa +) CLOSE_STALE_COMMENT = ( - """I'm closing this issue because it has been stalled for 3 weeks with no activity. Feel free to add a comment here and we can re-open it. Or feel free to file a new issue at any time.""" + """I'm closing this issue because it has been stalled for 3 weeks with no activity. Feel free to add a comment here and we can re-open it. Or feel free to file a new issue at any time.""" # noqa + BOT_SUFFIX -) # noqa +) # GitHub API configuration GITHUB_API_URL = "https://api.github.com"