aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorne_mene <[email protected]>2026-03-31 22:42:42 +0200
committerne_mene <[email protected]>2026-03-31 22:42:42 +0200
commit30140b1b65525268f046be60814ff91b876c553c (patch)
treefd23b33c6c5ca7af7aaea5d0aa18c76c12117b06
parent97fde7219ee0950b0e93a37dde9cbbe5469a9ea2 (diff)
removed annoying print
-rw-r--r--src/export.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export.lua b/src/export.lua
index b0b9809..12bb56e 100644
--- a/src/export.lua
+++ b/src/export.lua
@@ -10,7 +10,7 @@ local function table_to_str(tbl, indent)
local src = "{"
for k, v in pairs(tbl) do
- print(k, v)
+ -- print(k, v)
if type(k) == "function" or type(v) == "function" then
error("Cannot export function " .. tostring(k) .. " = " .. tostring(v))
end