From d0f1dbf132261e535201c28866f5f36838221fff Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 4 Nov 2025 23:47:06 -0500 Subject: [PATCH] cleanup --- lua/cp/cache.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lua/cp/cache.lua b/lua/cp/cache.lua index 81ce011..544aaf4 100644 --- a/lua/cp/cache.lua +++ b/lua/cp/cache.lua @@ -191,12 +191,6 @@ end ---@param problem_id? string ---@return CombinedTest? function M.get_combined_test(platform, contest_id, problem_id) - vim.validate({ - platform = { platform, 'string' }, - contest_id = { contest_id, 'string' }, - problem_id = { problem_id, { 'string', 'nil' }, true }, - }) - if not cache_data[platform] or not cache_data[platform][contest_id]