0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

TOOLS/test-hooks.lua: fix lint warning

This commit is contained in:
Guido Cella 2024-05-27 23:14:00 +02:00 committed by Kacper Michajłow
parent 3613070380
commit c5468ba5ff
2 changed files with 1 additions and 2 deletions

View File

@ -110,7 +110,6 @@ max_line_length = 100
-- TODO: Remove everything below this line
local todo = {
"player/lua/osc.lua",
"TOOLS/lua/test-hooks.lua",
}
for _, path in ipairs(todo) do
files[path]["allow_defined"] = true

View File

@ -1,6 +1,6 @@
local utils = require("mp.utils")
function hardsleep()
local function hardsleep()
os.execute("sleep 1s")
end