Lint fixes.

This commit is contained in:
Neil Fraser
2015-01-22 15:58:10 -08:00
parent f8365e9eba
commit 1c39a638e3
27 changed files with 71 additions and 2129 deletions

View File

@@ -62,7 +62,7 @@ Blockly.Python['procedures_defreturn'] = function(block) {
if (returnValue) {
returnValue = ' return ' + returnValue + '\n';
} else if (!branch) {
branch = ' pass';
branch = Blockly.Python.PASS;
}
var args = [];
for (var x = 0; x < block.arguments_.length; x++) {