From 34644e416b0fc7a99c51da09a4ce65ced570af6f Mon Sep 17 00:00:00 2001 From: aarondill Date: Mon, 6 Nov 2023 12:32:10 -0600 Subject: [PATCH] chore: formatting --- lua/tabnine/build.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/tabnine/build.lua b/lua/tabnine/build.lua index f761318..5d24458 100644 --- a/lua/tabnine/build.lua +++ b/lua/tabnine/build.lua @@ -37,7 +37,10 @@ local function run_build(callback) end) if not handle then ---@cast pid string - vim.notify(("Could not spawn tabnine-nvim build script: `%s`. Error: %s"):format(cmd_str, pid), vim.log.levels.WARN) + vim.notify( + ("Could not spawn tabnine-nvim build script: `%s`. Error: %s"):format(cmd_str, pid), + vim.log.levels.WARN + ) if callback then callback(false) end return nil, pid end ---@cast pid integer