cycle-deinterlace-pullup.lua: fix unused variable warnings

This commit is contained in:
Kacper Michajłow 2024-05-12 02:11:33 +02:00
parent e47d768d51
commit 16c19445bc
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ script_name = mp.get_script_name()
pullup_label = string.format("%s-pullup", script_name) pullup_label = string.format("%s-pullup", script_name)
function pullup_on() function pullup_on()
for i,vf in pairs(mp.get_property_native('vf')) do for _, vf in pairs(mp.get_property_native('vf')) do
if vf['label'] == pullup_label then if vf['label'] == pullup_label then
return "yes" return "yes"
end end