[nodes] Update of values from tuple to list for ChoiceParam

Update of values from tuple to list for ChoiceParam to be consistent
everywhere.

Before it was not a problem but because of dynamic choices we expect it
to be editable list.
This commit is contained in:
Aurore LAFAURIE 2024-03-28 18:20:09 +01:00
parent 498fd6cbd2
commit 5dd13b0445
9 changed files with 14 additions and 14 deletions

View file

@ -212,7 +212,7 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
label="Partitioning",
description="Single block or auto partitioning.",
value="singleBlock",
values=("singleBlock", "auto"),
values=["singleBlock", "auto"],
exclusive=True,
uid=[0],
advanced=True,
@ -222,7 +222,7 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
label="Repartition",
description="Multi-resolution or regular grid-based repartition.",
value="multiResolution",
values=("multiResolution", "regularGrid"),
values=["multiResolution", "regularGrid"],
exclusive=True,
uid=[0],
advanced=True,