From 00cbff3d7fdc5c19a1d762186d1926f4e30be708 Mon Sep 17 00:00:00 2001 From: tomsail Date: Mon, 9 Dec 2024 08:32:03 +0100 Subject: [PATCH] ci: fix attempt 1 --- pyposeidon/telemac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyposeidon/telemac.py b/pyposeidon/telemac.py index 2c470bc..9cb68b2 100644 --- a/pyposeidon/telemac.py +++ b/pyposeidon/telemac.py @@ -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)