remove a function that was not used anywhere

This commit is contained in:
Oleksandr Smirnov 2025-02-17 15:22:49 +02:00
parent 0eba23e1a3
commit 4f9d4695b1
No known key found for this signature in database

View file

@ -23,12 +23,4 @@ function utils.notify(msg, lvl)
log.debug(msg)
end
-- safe require
---@param module string module name
function utils.sreq(module)
local ok, m = pcall(require, module)
assert(ok, string.format("gopher.nvim dependency error: %s not installed", module))
return m
end
return utils