summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2024-05-12 02:11:33 +0200
committerKacper Michajłow <kasper93@gmail.com>2024-05-12 20:06:39 +0200
commit16c19445bcba83c76fbdd2f3cb1d0ca996c9b8e3 (patch)
tree2a8e5af445c51f151118b314705ef50463ab7934 /TOOLS
parente47d768d5137fc1bb771ade79ac5efadd0f93dac (diff)
downloadmpv-16c19445bcba83c76fbdd2f3cb1d0ca996c9b8e3.tar.bz2
mpv-16c19445bcba83c76fbdd2f3cb1d0ca996c9b8e3.tar.xz
cycle-deinterlace-pullup.lua: fix unused variable warnings
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/lua/cycle-deinterlace-pullup.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/lua/cycle-deinterlace-pullup.lua b/TOOLS/lua/cycle-deinterlace-pullup.lua
index 2902e40dae..71ca00ac60 100644
--- a/TOOLS/lua/cycle-deinterlace-pullup.lua
+++ b/TOOLS/lua/cycle-deinterlace-pullup.lua
@@ -19,7 +19,7 @@ script_name = mp.get_script_name()
pullup_label = string.format("%s-pullup", script_name)
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
return "yes"
end