File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/ansys/geometry/core/tools Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -622,9 +622,8 @@ def fix(self) -> RepairToolMessage:
622622 return RepairToolMessage (False , [], [])
623623
624624 parent_design = get_design_from_body (self .bodies [0 ])
625- response = self ._repair_stub .FixInterference (
626- FixInterferenceRequest (interference_problem_area_id = self ._grpc_id )
627- )
625+ response = self ._grpc_client .services .repair_tools .fix_interference (
626+ interference_problem_area_id = self ._grpc_id )
628627
629628 if not pyansys_geom .USE_TRACKER_TO_UPDATE_DESIGN :
630629 parent_design ._update_design_inplace ()
@@ -633,7 +632,7 @@ def fix(self) -> RepairToolMessage:
633632
634633 ## The tool does not return the created or modified objects.
635634 ## https://github.com/ansys/pyansys-geometry/issues/1319
636- message = RepairToolMessage (response .result . success , [], [])
635+ message = RepairToolMessage (response .get ( "repair_tracker_response" ). get ( " success" ) , [], [])
637636 return message
638637
639638
You can’t perform that action at this time.
0 commit comments