From 16c19445bcba83c76fbdd2f3cb1d0ca996c9b8e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Sun, 12 May 2024 02:11:33 +0200 Subject: [PATCH] cycle-deinterlace-pullup.lua: fix unused variable warnings --- TOOLS/lua/cycle-deinterlace-pullup.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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