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 f4e167d commit b4f930cCopy full SHA for b4f930c
src/ansys/geometry/core/_grpc/_services/base/repair_tools.py
@@ -27,6 +27,7 @@
27
"""
28
29
from abc import ABC, abstractmethod
30
+
31
import grpc
32
33
@@ -41,7 +42,8 @@ class GRPCRepairToolsService(ABC):
41
42
def __init__(self, channel: grpc.Channel):
43
"""Initialize the gRPC repair tools service.
44
- Parameters:
45
+ Parameters
46
+ ----------
47
channel (grpc.Channel): The gRPC channel used to communicate with the service.
48
49
pass # pragma: no cover
@@ -51,7 +53,6 @@ def find_split_edges(self, **kwargs):
51
53
"""Identify split edges in the geometry."""
52
54
55
-
56
@abstractmethod
57
def find_extra_edges(self, **kwargs):
58
"""Identify extra edges in the geometry."""
0 commit comments