fix(ci): format
This commit is contained in:
parent
49e4233b3f
commit
760e7d7731
1 changed files with 4 additions and 1 deletions
|
|
@ -189,7 +189,10 @@ function M.setup_python_env()
|
||||||
.system({ 'uv', 'sync' }, { cwd = plugin_path, text = true, env = env })
|
.system({ 'uv', 'sync' }, { cwd = plugin_path, text = true, env = env })
|
||||||
:wait()
|
:wait()
|
||||||
if result.code ~= 0 then
|
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
|
return false
|
||||||
end
|
end
|
||||||
if result.stderr and result.stderr ~= '' then
|
if result.stderr and result.stderr ~= '' then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue