fix(ci): format

This commit is contained in:
Barrett Ruth 2026-02-20 17:47:36 -05:00 committed by Barrett Ruth
parent 49e4233b3f
commit 760e7d7731

View file

@ -189,7 +189,10 @@ function M.setup_python_env()
.system({ 'uv', 'sync' }, { cwd = plugin_path, text = true, env = env })
:wait()
if result.code ~= 0 then
logger.log('Failed to setup Python environment: ' .. result.stderr, vim.log.levels.ERROR)
logger.log(
'Failed to setup Python environment: ' .. (result.stderr or ''),
vim.log.levels.ERROR
)
return false
end
if result.stderr and result.stderr ~= '' then