Fix reports from luacheck (#1031)

This commit is contained in:
Luc Sinet 2021-07-19 18:12:59 +02:00 committed by GitHub
parent e82fc442d0
commit bdd6e0cf37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
-- if not package.loaded['nvim-autopairs'] then
-- return
-- end
local status_ok, autopairs = pcall(require, "nvim-autopairs")
local status_ok, _ = pcall(require, "nvim-autopairs")
if not status_ok then
return
end