From 29d0e51ca11689dc6e94aa8ad1462685ff7f911e Mon Sep 17 00:00:00 2001 From: The Ghost of FOSS' Future <163201376+sneedgroup-holder@users.noreply.github.com> Date: Sun, 15 Sep 2024 19:31:46 -0500 Subject: [PATCH] wrong lang version of true MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This ain't Python! 🐍 --- index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.mjs b/index.mjs index 78f77c1..5d1f388 100644 --- a/index.mjs +++ b/index.mjs @@ -176,7 +176,7 @@ async function main() { const delay = ms => new Promise(res => setTimeout(res, ms)); async function mainLoop() { - while (True) { + while (true) { await main() await delay(60000*20) }