util/format.lua
changeset 12593 39ae08180c81
parent 12577 0f4feaf9ca64
child 12594 5eaf77114fdb
--- a/util/format.lua	Mon Jul 11 17:32:13 2022 +0200
+++ b/util/format.lua	Mon Jul 11 19:07:38 2022 +0200
@@ -6,7 +6,7 @@
 -- Provides some protection from e.g. CAPEC-135, CWE-117, CWE-134, CWE-93
 
 local tostring = tostring;
-local unpack = table.unpack or unpack; -- luacheck: ignore 113/unpack
+local unpack = table.unpack;
 local pack = require "util.table".pack; -- TODO table.pack in 5.2+
 local valid_utf8 = require "util.encodings".utf8.valid;
 local type = type;