File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/ansys/geometry/core/_grpc/_services/v0 Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 3030from ..base .repair_tools import GRPCRepairToolsService
3131from .conversions import (
3232 serialize_tracker_command_response ,
33+ build_grpc_id ,
3334)
3435
3536
@@ -517,7 +518,9 @@ def inspect_geometry(self, **kwargs) -> dict: # noqa: D102
517518 from ansys .api .geometry .v0 .repairtools_pb2 import InspectGeometryRequest
518519
519520 # Create the request - assumes all inputs are valid and of the proper type
520- request = InspectGeometryRequest (bodies = kwargs .get ("body_ids" , []))
521+ request = InspectGeometryRequest (
522+ bodies = [build_grpc_id (id ) for id in kwargs .get ("body_ids" , [])]
523+ )
521524
522525 # Call the gRPC service
523526 inspect_result_response = self .stub .InspectGeometry (request )
You can’t perform that action at this time.
0 commit comments