fix(ci): unused vars

This commit is contained in:
Barrett Ruth 2025-09-15 10:53:35 -04:00
parent 64d6576bcf
commit 8b0c6994d8

View file

@ -45,24 +45,6 @@ local function get_current_problem_key()
end
end
local function get_test_states()
local problem_key = get_current_problem_key()
if not problem_key then
return {}
end
if not state.test_states[problem_key] then
state.test_states[problem_key] = {}
if state.test_cases then
for i = 1, #state.test_cases do
state.test_states[problem_key][i] = true
end
end
end
return state.test_states[problem_key]
end
local function set_platform(platform)
if not vim.tbl_contains(platforms, platform) then
logger.log(("unknown platform. Available: [%s]"):format(table.concat(platforms, ", ")), vim.log.levels.ERROR)