Skip to content

Commit

Permalink
ci: fix attempt 1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsail committed Dec 9, 2024
1 parent 699bba2 commit 00cbff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyposeidon/telemac.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def extract_contour(ds: xr.Dataset, tel_path: str):
tel = TelemacFile(tel_path)

# Extract boundary edges and nodes
connectivity_bnd_elt, bnd_points = detecting_boundaries(ds.face_nodes, len(vertices))
connectivity_bnd_elt, bnd_points = detecting_boundaries(ds.face_nodes.values, len(vertices))

domains = []
boundaries_ordered, bnd_idx_left, bnd_elt_left = sorting_boundaries(tel, bnd_points, connectivity_bnd_elt)
Expand Down

0 comments on commit 00cbff3

Please sign in to comment.