Skip to content

Commit

Permalink
fix: Fix unicode support in python recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Romuald Rousseau committed Nov 12, 2024
1 parent 2a0b950 commit a6959b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void applyAll() {
if (!StringUtils.isBlank(recipe)) {
try (var pyInterp = new PythonInterpreter()) {
pyInterp.set("sheet", this);
pyInterp.exec(recipe);
pyInterp.exec(pyInterp.compile(recipe));
}
}

Expand Down

0 comments on commit a6959b5

Please sign in to comment.