mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-01 15:58:36 +02:00
[nodes] Harmonize the use of trailing commas across all the nodes
This commit is contained in:
parent
0f6ad22d11
commit
61a8dcd4e2
57 changed files with 682 additions and 416 deletions
|
@ -53,7 +53,7 @@ Post process the panorama.
|
|||
description="The width (in pixels) of the output panorama preview.",
|
||||
value=1000,
|
||||
range=(0, 5000, 100),
|
||||
uid=[0]
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="outputColorSpace",
|
||||
|
@ -82,7 +82,7 @@ Post process the panorama.
|
|||
value=0,
|
||||
range=(0, 500, 1),
|
||||
uid=[0],
|
||||
enabled=lambda node: node.compressionMethod.value in ["dwaa", "dwab", "zip", "zips"]
|
||||
enabled=lambda node: node.compressionMethod.value in ["dwaa", "dwab", "zip", "zips"],
|
||||
),
|
||||
desc.StringParam(
|
||||
name="panoramaName",
|
||||
|
@ -91,7 +91,7 @@ Post process the panorama.
|
|||
value="panorama.exr",
|
||||
uid=[],
|
||||
group=None,
|
||||
advanced=True
|
||||
advanced=True,
|
||||
),
|
||||
desc.StringParam(
|
||||
name="previewName",
|
||||
|
@ -110,7 +110,7 @@ Post process the panorama.
|
|||
value="info",
|
||||
exclusive=True,
|
||||
uid=[],
|
||||
)
|
||||
),
|
||||
]
|
||||
|
||||
outputs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue