File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/ansys/geometry/core/_grpc/_services/v1 Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1453,7 +1453,8 @@ def serialize_entity_identifier(entity):
14531453 serialize_body (body ) for body in getattr (response .tracked_changes , "created_bodies" , [])
14541454 ],
14551455 "modified_bodies" : [
1456- serialize_body (body ) for body in getattr (response .tracked_changes , "modified_bodies" , [])
1456+ serialize_body (body )
1457+ for body in getattr (response .tracked_changes , "modified_bodies" , [])
14571458 ],
14581459 "deleted_bodies" : [
14591460 serialize_entity_identifier (entity )
Original file line number Diff line number Diff line change 2727from ansys .geometry .core .errors import protect_grpc
2828
2929from ..base .conversions import (
30- from_measurement_to_server_angle ,
3130 from_measurement_to_server_length ,
3231 to_area ,
3332)
@@ -72,7 +71,7 @@ def __init__(self, channel: grpc.Channel): # noqa: D102
7271 def get_surface (self , ** kwargs ) -> dict : # noqa: D102
7372 # Create the request - assumes all inputs are valid and of the proper type
7473 request = MultipleEntitiesRequest (ids = [build_grpc_id (kwargs ["id" ])])
75-
74+
7675 # Call the gRPC service
7776 response = self .stub .GetSurface (request = request ).response_data [0 ]
7877
You can’t perform that action at this time.
0 commit comments