Fix local variable name clash (F812)

This commit is contained in:
Karl Hobley 2015-04-03 18:31:54 +01:00
parent 88ef591b84
commit 66b7f71687

View file

@ -147,8 +147,8 @@ class BaseStreamBlock(Block):
values_with_indexes.sort()
return StreamValue(self, [
(block_type_name, value)
for (index, block_type_name, value) in values_with_indexes
(child_block_type_name, value)
for (index, child_block_type_name, value) in values_with_indexes
])
def clean(self, value):