Remove redundant require (#959)

This commit is contained in:
Tom Kuson 2024-07-21 22:22:44 +02:00 committed by Renken
parent 93a8f3077c
commit eef3cce428
Signed by: renken
GPG key ID: 1F2BB159B645E575

View file

@ -49,7 +49,7 @@ return {
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, { vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
group = lint_augroup, group = lint_augroup,
callback = function() callback = function()
require('lint').try_lint() lint.try_lint()
end, end,
}) })
end, end,