# HG changeset patch # User Kim Alvefur # Date 1476796649 -7200 # Node ID 672a863105f63b66ca81472b2633bf98be3adfae # Parent 0d70410efdcf4683c58da7b4832b5f1e6e923aa2 util.statsd: Ignore unused argument [luacheck] diff -r 0d70410efdcf -r 672a863105f6 util/statsd.lua --- a/util/statsd.lua Tue Oct 18 15:16:30 2016 +0200 +++ b/util/statsd.lua Tue Oct 18 15:17:29 2016 +0200 @@ -44,7 +44,7 @@ end return function (new_v) send_gauge(name, new_v); end end; - counter = function (name, initial) + counter = function (name, initial) --luacheck: ignore 212/initial return function (delta) send_gauge(name, delta, true); end;