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 2fc6351 commit 06e7fdfCopy full SHA for 06e7fdf
src/ansys/geometry/core/_grpc/_services/base/repair_tools.py
@@ -34,17 +34,14 @@
34
class GRPCRepairToolsService(ABC):
35
"""Abstract base class for gRPC-based repair tools service.
36
37
- Defines abstract methods for identifying and repairing geometry issues in a model.
+ Parameters
38
+ ----------
39
+ channel: grpc.Channel
40
+ The gRPC channel used to communicate with the service.
41
"""
42
43
def __init__(self, channel: grpc.Channel):
- """Initialize the gRPC repair tools service.
-
- Parameters
44
- ----------
45
- channel: grpc.Channel
46
- The gRPC channel used to communicate with the service.
47
- """
+ """Initialize the gRPC repair tools service."""
48
pass # pragma: no cover
49
50
@abstractmethod
0 commit comments