From 6abe02f5ee157194b9c801abd5cc888c615ac7a3 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 20 Feb 2026 17:47:36 -0500 Subject: [PATCH] fix(ci): format --- lua/cp/utils.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/cp/utils.lua b/lua/cp/utils.lua index b120a6f..b602940 100644 --- a/lua/cp/utils.lua +++ b/lua/cp/utils.lua @@ -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