fix(ci): unused vars

This commit is contained in:
Barrett Ruth 2025-09-22 23:05:52 -04:00
parent 7ad64677a5
commit 76cb1e456e
5 changed files with 9 additions and 9 deletions

View file

@ -27,7 +27,7 @@ function M.kill_job(job_id)
end
function M.kill_all_jobs()
for job_id, job in pairs(current_jobs) do
for _, job in pairs(current_jobs) do
job:kill(9)
end
current_jobs = {}