diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-08 17:10:51 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-08 17:10:51 +0100 |
commit | a8b096516b2ef1791bc348e18baa7e7f5399de8f (patch) | |
tree | d5b43fb99c2898721ab605e16478d773e7eba5ba /util/multitable.lua | |
parent | 6dcf53f7b284f265ce3f2215e33c6f0c28be5ce9 (diff) | |
download | prosody-a8b096516b2ef1791bc348e18baa7e7f5399de8f.tar.gz prosody-a8b096516b2ef1791bc348e18baa7e7f5399de8f.zip |
lint: Remove use of the 143 error code
Does not appear to be invoked by anything
Diffstat (limited to 'util/multitable.lua')
-rw-r--r-- | util/multitable.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/multitable.lua b/util/multitable.lua index 8d32ed8a..4f2cd972 100644 --- a/util/multitable.lua +++ b/util/multitable.lua @@ -9,7 +9,7 @@ local select = select; local t_insert = table.insert; local pairs, next, type = pairs, next, type; -local unpack = table.unpack or unpack; --luacheck: ignore 113 143 +local unpack = table.unpack or unpack; --luacheck: ignore 113 local _ENV = nil; -- luacheck: std none |