We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 566ba0e commit 370c1dcCopy full SHA for 370c1dc
src/ansys/geometry/core/_grpc/_services/v1/components.py
@@ -126,7 +126,7 @@ def set_placement(self, **kwargs) -> dict: # noqa: D102
126
127
# Create the request with repeated ids and placements
128
request = SetPlacementRequest(
129
- ids=[kwargs["id"]],
+ ids=[build_grpc_id(kwargs["id"])],
130
placements=[
131
PlacementData(
132
translation=translation,
@@ -157,7 +157,7 @@ def set_shared_topology(self, **kwargs) -> dict: # noqa: D102
157
request = SetSharedTopologyRequest(
158
shared_topologies=[
159
SharedTopologyData(
160
- id=kwargs["id"],
+ id=build_grpc_id(kwargs["id"]),
161
share_type=kwargs["share_type"].value,
162
)
163
]
0 commit comments