Update pull request, mostly whitespace and comments.

This commit is contained in:
Dan LaLiberte
2016-05-06 10:35:05 -04:00
parent 73953e9e53
commit f28928db83
8 changed files with 9 additions and 24 deletions

View File

@@ -337,7 +337,7 @@ Blockly.Python['lists_sort'] = function(block) {
]);
var code = sortFunctionName +
'(' + listCode + ', "' + type + '", ' + reverse + ')';
'(' + listCode + ', "' + type + '", ' + reverse + ')';
return [code, Blockly.Python.ORDER_FUNCTION_CALL];
};