# HG changeset patch # User Kim Alvefur # Date 1531422581 -7200 # Node ID 1f2272cda0d72032216110125cfc85c8079040fa # Parent 00034d0cc05a080e64583942f2ab69ef4a07657d mod_profile: Ignore shadowed variable name diff -r 00034d0cc05a -r 1f2272cda0d7 mod_profile/mod_profile.lua --- a/mod_profile/mod_profile.lua Thu Jul 12 21:07:10 2018 +0200 +++ b/mod_profile/mod_profile.lua Thu Jul 12 21:09:41 2018 +0200 @@ -17,7 +17,7 @@ local storage = module:open_store(); local legacy_storage = module:open_store("vcard"); -local function get_item(vcard, name) +local function get_item(vcard, name) -- luacheck: ignore 431 local item; for i=1, #vcard do item=vcard[i];