From e4cb1f6c7008ce6682fa80a414caae0a0fefab79 Mon Sep 17 00:00:00 2001 From: Mikayla Date: Wed, 25 Sep 2024 21:26:07 +0000 Subject: [PATCH] luacheck fix --- supervisor/facility.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/facility.lua b/supervisor/facility.lua index e8b6b13..f61e280 100644 --- a/supervisor/facility.lua +++ b/supervisor/facility.lua @@ -370,7 +370,7 @@ function facility.new(config) -- ack all alarms on all reactor units function public.ack_all() for i = 1, #self.units do - local u = self.units[i].ack_all() + self.units[i].ack_all() end end