mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +02:00
newNodeType: skip help param
This commit is contained in:
parent
03d57a33c0
commit
f0d7c7ae80
1 changed files with 3 additions and 1 deletions
|
@ -110,7 +110,9 @@ print('='*80)
|
|||
|
||||
for inputArg in inputArgs:
|
||||
shortName = inputArg[0]
|
||||
longName = longName = inputArg[1]
|
||||
longName = inputArg[1]
|
||||
if longName == 'help':
|
||||
continue # skip help argument
|
||||
arg = inputArg[2]
|
||||
value = inputArg[3]
|
||||
description = trim(''.join(inputArg[4:]))
|
||||
|
|
Loading…
Add table
Reference in a new issue