From e98ced5fdad21ce03f3a64d809370a6f0ba708ed Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 15 Sep 2025 18:36:57 -0400 Subject: [PATCH] fix(ci): correct typing --- lua/cp/cache.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/cp/cache.lua b/lua/cp/cache.lua index 516ddb3..ebf506f 100644 --- a/lua/cp/cache.lua +++ b/lua/cp/cache.lua @@ -5,14 +5,14 @@ ---@field problems Problem[] ---@field scraped_at string ---@field expires_at? number ----@field test_cases? TestCase[] +---@field test_cases? CachedTestCase[] ---@field test_cases_cached_at? number ---@class Problem ---@field id string ---@field name? string ----@class TestCase +---@class CachedTestCase ---@field input string ---@field output string