ci: format

This commit is contained in:
Barrett Ruth 2026-03-10 19:28:36 -04:00
parent c88a9886c4
commit e764b34ecb
3 changed files with 5 additions and 4 deletions

View file

@ -740,7 +740,6 @@ function M.render(bufnr)
end
end
restore_folds(bufnr)
end
---@return nil

View file

@ -416,7 +416,11 @@ function M.refresh(s)
s:save()
end
local buffer = require('pending.buffer')
if (any_changed or any_fetched) and buffer.bufnr() and vim.api.nvim_buf_is_valid(buffer.bufnr()) then
if
(any_changed or any_fetched)
and buffer.bufnr()
and vim.api.nvim_buf_is_valid(buffer.bufnr())
then
buffer.render()
end
end
@ -428,5 +432,4 @@ function M.refresh(s)
end
end
return M

View file

@ -1453,7 +1453,6 @@ function M.command(args)
end
end
---@return string[]
function M.sync_backends()
return (discover_backends())