mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-06 21:01:59 +02:00
[tests] Remove invalid=
when the implicit argument is enough
This commit is contained in:
parent
41a1b47c43
commit
ec0721d381
5 changed files with 21 additions and 31 deletions
|
@ -7,11 +7,11 @@ from meshroom.core import desc, registerNodeType
|
|||
class SampleNode(desc.Node):
|
||||
""" Sample Node for unit testing """
|
||||
inputs = [
|
||||
desc.File(name='input', label='Input', description='', value='', invalidate=True,),
|
||||
desc.File(name='input', label='Input', description='', value='',),
|
||||
desc.StringParam(name='paramA', label='ParamA', description='', value='', invalidate=False) # No impact on UID
|
||||
]
|
||||
outputs = [
|
||||
desc.File(name='output', label='Output', description='', value=desc.Node.internalFolder, invalidate=False)
|
||||
desc.File(name='output', label='Output', description='', value=desc.Node.internalFolder)
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue