chore: remove debug logging and fix closure bug in test hooks

This commit is contained in:
2026-05-07 15:02:00 -04:00
parent 7d12806ce6
commit d4b4312dd2
2 changed files with 9 additions and 6 deletions
+2 -2
View File
@@ -51,9 +51,9 @@ def main() -> None:
if 'You are assigned to Ticket' in prompt:
# Extract ticket ID
import re
match = re.search(r'Ticket (ticket-[A-B]-1)', prompt)
match = re.search(r'Ticket (ticket-[A-Ba-b]-1)', prompt, re.IGNORECASE)
tid = match.group(1) if match else "unknown"
print(json.dumps({
"type": "message",
"role": "assistant",