Skip to content

Commit a66e8ec

Browse files
fix naming convention
1 parent 37fa7b2 commit a66e8ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ansys/geometry/core/_grpc/_services/v1/model_tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, channel: grpc.Channel): # noqa: D102
5252
from ansys.api.discovery.v1.operations.sketch_pb2_grpc import SketchStub
5353

5454
self.stub = EditStub(channel)
55-
self.SketchStub = SketchStub(channel)
55+
self.sketch_stub = SketchStub(channel)
5656

5757
@protect_grpc
5858
def chamfer(self, **kwargs) -> dict: # noqa: D102
@@ -203,7 +203,7 @@ def create_sketch_line(self, **kwargs) -> dict: # noqa: D102
203203
)
204204

205205
# Call the gRPC service
206-
_ = self.SketchStub.CreateSketchLine(request)
206+
_ = self.sketch_stub.CreateSketchLine(request)
207207

208208
# Return the response - formatted as a dictionary
209209
return {}

0 commit comments

Comments
 (0)