From 9e14de36fb4e35b670f84892e5933647a10a13f6 Mon Sep 17 00:00:00 2001 From: trian-gles <69212477+trian-gles@users.noreply.github.com> Date: Thu, 27 Jun 2024 16:01:27 +0200 Subject: [PATCH] removed print statement --- tf.js | 1 - 1 file changed, 1 deletion(-) diff --git a/tf.js b/tf.js index c7803f3..1665451 100644 --- a/tf.js +++ b/tf.js @@ -61,7 +61,6 @@ async function getWeights() { maxApi.addHandler("save", (dictId, key) => { maxApi.getDict(dictId).then((dict) => { getWeights().then((weights) => { - console.log(weights); dict[key] = weights; maxApi.setDict(dictId, dict); });