fix(types): correct LuaLS annotations in oauth and gcal

This commit is contained in:
Barrett Ruth 2026-03-05 11:28:29 -05:00
parent bc2a106617
commit 4187357a41
2 changed files with 5 additions and 4 deletions

View file

@ -169,7 +169,8 @@ function M.push()
)
if should_delete then
local del_err = delete_event(access_token, cal_id, event_id)
local del_err =
delete_event(access_token, cal_id --[[@as string]], event_id --[[@as string]])
if del_err then
vim.notify('pending.nvim: gcal delete failed: ' .. del_err, vim.log.levels.WARN)
else