Show More
@@ -519,7 +519,7 b' def _walk_trie(block):' | |||
|
519 | 519 | |
|
520 | 520 | Children blocks are always yield before their parent block. |
|
521 | 521 | """ |
|
522 | for (_, item) in sorted(block.items()): | |
|
522 | for (__, item) in sorted(block.items()): | |
|
523 | 523 | if isinstance(item, dict): |
|
524 | 524 | for sub_block in _walk_trie(item): |
|
525 | 525 | yield sub_block |
General Comments 0
You need to be logged in to leave comments.
Login now