summaryrefslogtreecommitdiff
path: root/lua/core/formatter.lua
diff options
context:
space:
mode:
authorLuc Sinet <[email protected]>2021-07-19 18:12:59 +0200
committerGitHub <[email protected]>2021-07-19 20:42:59 +0430
commitbdd6e0cf3738911ebe92b3ed7dcb52d84b7efa98 (patch)
tree79d73d46e3bdfe3249653e71a27e0931714416ba /lua/core/formatter.lua
parente82fc442d06cca13d4b13b3aea367a4217628ca3 (diff)
Fix reports from luacheck (#1031)
Diffstat (limited to 'lua/core/formatter.lua')
-rw-r--r--lua/core/formatter.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/formatter.lua b/lua/core/formatter.lua
index 05de74ab..c8f1baeb 100644
--- a/lua/core/formatter.lua
+++ b/lua/core/formatter.lua
@@ -48,7 +48,7 @@ end
-- end
-- end
-- end
-local status_ok, formatter = pcall(require, "formatter")
+local status_ok, _ = pcall(require, "formatter")
if not status_ok then
return
end