LFM2.5-350M-PR-Origin / example_pr.json
Codingstark's picture
Publish LFM2.5-350M PR-origin LoRA adapter
e82ccf1 verified
Raw
History Blame Contribute Delete
513 Bytes
{
"title": "Handle retry exhaustion",
"body": "Return the last error after all attempts are exhausted.",
"branch": "feature/retry-exhaustion",
"commit_messages": [
"Handle retry exhaustion"
],
"diff": "diff --git a/retry.py b/retry.py\n--- a/retry.py\n+++ b/retry.py\n@@ -8,4 +8,7 @@ def run(operation):\n+ last_error = None\n for _ in range(3):\n try:\n return operation()\n+ except Exception as error:\n+ last_error = error\n+ raise last_error"
}