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 a2876b6 commit 046fd87Copy full SHA for 046fd87
src/ansys/geometry/core/_grpc/_services/v0/bodies.py
@@ -754,8 +754,8 @@ def boolean(self, **kwargs) -> dict: # noqa: D102
754
for body2 in kwargs["other"]:
755
tmp_resp = self.stub.Boolean(
756
request=BooleanRequest(
757
- body1=kwargs["target"].id,
758
- body2=body2.id,
+ body1=kwargs["target"],
+ body2=body2,
759
method=kwargs["method"],
760
)
761
).empty_result
@@ -766,8 +766,8 @@ def boolean(self, **kwargs) -> dict: # noqa: D102
766
elif len(kwargs["other"]) == 1:
767
resp = self.stub.Boolean(
768
769
770
- body2=kwargs["other"][0].id,
+ body2=kwargs["other"][0],
771
772
773
0 commit comments