removed print statement

This commit is contained in:
trian-gles 2024-06-27 16:01:27 +02:00
parent 43cd89faa5
commit 9e14de36fb

1
tf.js
View File

@ -61,7 +61,6 @@ async function getWeights() {
maxApi.addHandler("save", (dictId, key) => { maxApi.addHandler("save", (dictId, key) => {
maxApi.getDict(dictId).then((dict) => { maxApi.getDict(dictId).then((dict) => {
getWeights().then((weights) => { getWeights().then((weights) => {
console.log(weights);
dict[key] = weights; dict[key] = weights;
maxApi.setDict(dictId, dict); maxApi.setDict(dictId, dict);
}); });