Meshroom/tests/nodes/test/ls.py
Candice Bentéjac 28042dd2ad [tests] Harmonize and clean-up syntax across test files
Also comply more with PEP8 linting rules.
2025-06-05 14:40:09 +02:00

22 lines
451 B
Python

from meshroom.core import desc
class Ls(desc.CommandLineNode):
commandLine = "ls {inputValue} > {outputValue}"
inputs = [
desc.File(
name="input",
label="Input",
description="",
value="",
)
]
outputs = [
desc.File(
name="output",
label="Output",
description="",
value="{nodeCacheFolder}/ls.txt",
)
]