Problem
src/babel_validation/sources/github/github_issues_test_cases.py has a get_all_issues() method that paginates through every issue in every configured repository. It was superseded by get_issues_with_tests() (which uses GitHub's search API and is much faster), and no code in this repo calls get_all_issues() anymore.
Suggested Fix
Remove the method, or if it's useful for one-off manual exploration, document that clearly and keep it out of the hot path.
Why it was deferred
Identified during PR #67 review. Removing dead code in the same PR as adding the replacement would be fine, but was missed.
Problem
src/babel_validation/sources/github/github_issues_test_cases.pyhas aget_all_issues()method that paginates through every issue in every configured repository. It was superseded byget_issues_with_tests()(which uses GitHub's search API and is much faster), and no code in this repo callsget_all_issues()anymore.Suggested Fix
Remove the method, or if it's useful for one-off manual exploration, document that clearly and keep it out of the hot path.
Why it was deferred
Identified during PR #67 review. Removing dead code in the same PR as adding the replacement would be fine, but was missed.