Skip to content

Commit 64a0f74

Browse files
committed
Sort the plugin names
1 parent eabff4b commit 64a0f74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansys/dpf/core/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,4 +1059,4 @@ def required_plugins(self) -> list[str]:
10591059
spec = dpf.core.dpf_operator.Operator.operator_specification(op_name, self._server)
10601060
plugin_name = spec.properties["plugin"]
10611061
out.append(plugin_name)
1062-
return list(set(out))
1062+
return sorted(list(set(out)))

0 commit comments

Comments
 (0)