mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-22 05:51:53 +00:00
Fix local variable name clash (F812)
This commit is contained in:
parent
88ef591b84
commit
66b7f71687
1 changed files with 2 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue