fix lint issue

This commit is contained in:
kiyan
2022-01-21 11:19:56 +01:00
parent d874eb9065
commit 691a1c9699

View File

@@ -14,7 +14,7 @@ local clipboard = {
--- @param path string path to file or directory --- @param path string path to file or directory
--- @return boolean --- @return boolean
local function exist(path) local function exist(path)
local result, error = luv.fs_stat(path) local _, error = luv.fs_stat(path)
return error == nil return error == nil
end end