You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use strict key access in GitHub API shape validation
Replace data.get('resources', {}).get('core', {}) with direct key access
data['resources']['core'] inside the try/except block so that a missing key
raises KeyError and is caught as malformed_response — matching the comment.
Add test_missing_resources_key to cover this path.
Addresses CodeRabbit review feedback (round 3).
0 commit comments