util/async.lua
changeset 7728 f928695a2af1
parent 7727 20a69ef5570c
child 8240 f81cd9aaf994
--- a/util/async.lua	Sat Nov 19 01:11:53 2016 +0100
+++ b/util/async.lua	Sat Nov 19 01:11:28 2016 +0100
@@ -85,7 +85,7 @@
 runner_mt.__index = runner_mt;
 
 local function runner_create_thread(func, self)
-	local thread = coroutine.create(function (self)
+	local thread = coroutine.create(function (self) -- luacheck: ignore 432/self
 		while true do
 			func(coroutine.yield("ready", self));
 		end