The parallel fetch functions (fetch_all_greenhouse_jobs_parallel, fetch_all_lever_jobs_parallel, etc.) contain hardcoded max_worker values (like 300, 30, 200, 15). Extract these into clearly named global constants at the top of the file.
Magic numbers make the code harder to read and tuning performance more difficult. Global constants centralize these configuration dials.
max_workers valuesDEFAULT_GREENHOUSE_MAX_WORKERSpre-commit run --all-files