Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into feature/RestApiv2
Browse files Browse the repository at this point in the history
  • Loading branch information
sgallou committed Nov 7, 2023
2 parents 87643b3 + 706896b commit 42b16c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Blockly.Python["yadoms_wait_for_event"] = function (block) {
code = Blockly.Python.prefixLines(code, Blockly.Python.INDENT) || Blockly.Python.PASS;
loop += "while " + endOfLoopVar + " != True :\n" + code + "\n";

loop += "# Manage break/continue inside waitForEvents\n";
loop += "# Manage break/continue inside waitForEvent\n";
loop += "if " + block.getBreakVariableName() + ":\n";
loop += Blockly.Python.INDENT + 'break\n';
loop += "if " + block.getContinueVariableName() + ":\n";
Expand Down

0 comments on commit 42b16c9

Please sign in to comment.