Skip to content

Commit

Permalink
revert #2256
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed May 15, 2023
1 parent fa2ef15 commit 67d873d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions xlwings/js/xlwings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,13 +286,12 @@ async function runPython(
addPicture(workbook, action);
} else if (action.func === "updatePicture") {
updatePicture(workbook, action);
} else if (action.func === "nameDelete") {
nameDelete(workbook, action);
}
{
} else {
globalThis.callbacks[action.func](workbook, action);
}
console.log(); // Force sync
if (forceSync.some((el) => action.func.toLowerCase().includes(el))) {
console.log(); // Force sync
}
});
}
}
Expand Down

0 comments on commit 67d873d

Please sign in to comment.