From 403192e0a612adea3241486dbd9f4917a211a1cc Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Mon, 28 Oct 2024 10:25:01 -0400 Subject: [PATCH] format --- src/festim/exports/minimum_surface.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/festim/exports/minimum_surface.py b/src/festim/exports/minimum_surface.py index 4f2918789..948af5816 100644 --- a/src/festim/exports/minimum_surface.py +++ b/src/festim/exports/minimum_surface.py @@ -25,6 +25,8 @@ def compute(self): subdomain, and appends it to the data list """ solution = self.field.solution - indices = self.surface.locate_boundary_facet_indices(solution.function_space.mesh) + indices = self.surface.locate_boundary_facet_indices( + solution.function_space.mesh + ) self.value = np.min(self.field.solution.x.array[indices]) self.data.append(self.value)