mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[python] use items instead of iteritems for python2/3 compatibility
This commit is contained in:
parent
81dcf10d25
commit
fb549ff3df
2 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ def test_transitive_reduction():
|
|||
|
||||
depthPerNode = graph.minMaxDepthPerNode()
|
||||
assert len(depthPerNode) == len(graph.nodes)
|
||||
for node, (minDepth, maxDepth) in depthPerNode.iteritems():
|
||||
for node, (minDepth, maxDepth) in depthPerNode.items():
|
||||
assert node.depth == maxDepth
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue