Skip to content

Commit ab5b2fa

Browse files
authored
Update pending_user_response.py to fix lint runner
1 parent 2fca973 commit ab5b2fa

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/pending_user_response.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main():
2525

2626
print("[VALIDATION] Would connect to Github and fetch repo:", REPO_NAME)
2727

28-
issues = repo.get_issues(state='open', labels=[LABEL])
28+
issues = repo.get_issues(state="open", labels=[LABEL])
2929
print(f"[VALIDATION] Would fetch open issues with label '{LABEL}'.")
3030

3131
now = datetime.datetime.utcnow()
@@ -60,9 +60,7 @@ def main():
6060
last_auto = auto_comments[-1]
6161
user = issue.user.login
6262
if (now - last_auto.created_at).days >= REMINDER_COOLDOWN_DAYS:
63-
print(
64-
f"[VALIDATION] Would remind {user} again on issue/PR #{issue.number}"
65-
)
63+
print(f"[VALIDATION] Would remind {user} again on issue/PR #{issue.number}")
6664

6765
# ---- EXISTING CLOSE/REMOVE LABEL LOGIC ----
6866
if auto_comments:
@@ -81,5 +79,6 @@ def main():
8179
f"[VALIDATION] Would remove label from issue/PR #{issue.number} after user response."
8280
)
8381

82+
8483
if __name__ == "__main__":
8584
main()

0 commit comments

Comments
 (0)