mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-13 06:47:26 +02:00
removed duplicated call to findnodes
This commit is contained in:
parent
aa1edf8d7b
commit
f491b5a77b
2 changed files with 4 additions and 2 deletions
|
@ -1315,6 +1315,6 @@ def submit(graphFile, submitter, toNode=None):
|
|||
Submit the given graph via the given submitter.
|
||||
"""
|
||||
graph = loadGraph(graphFile)
|
||||
toNodes = graph.findNodes([toNode]) if toNode else None
|
||||
toNodes = graph.findNodes(toNode) if toNode else None
|
||||
submitGraph(graph, submitter, toNodes)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue