Skip to content

Commit

Permalink
Fix frozen line id bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacarniato committed Feb 20, 2025
1 parent c940802 commit f631e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshkernel/meshkernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2339,7 +2339,7 @@ def curvilinear_frozen_line_add(
y_second_grid_line_node (float): Y-coordinate of the second grid line node.
Returns: The id of the added frozen line in the meshkernel state
"""
frozen_line_id = c_int
frozen_line_id = c_int()
self._execute_function(
self.lib.mkernel_curvilinear_frozen_line_add,
self._meshkernelid,
Expand Down

0 comments on commit f631e6d

Please sign in to comment.