Comment tweaks.

This commit is contained in:
Daniel LaLiberte
2016-05-05 18:16:20 -04:00
parent 8904fd1b9c
commit 73953e9e53
2 changed files with 3 additions and 6 deletions

View File

@@ -332,7 +332,7 @@ Blockly.Python['lists_sort'] = function(block) {
' "IGNORE_CASE": lambda s: str(s).lower()',
' }',
' keyv = keyFuncts[type]',
' tmp_list = list(listv)', // clone the list
' tmp_list = list(listv)', // Clone the list.
' return sorted(tmp_list, key=keyv, reverse=reversev)'
]);