From d94256fac4ed600db16339081f69f113badde069 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:25:25 +0100 Subject: [PATCH] :art: Format Python code with psf/black (#390) Co-authored-by: ndem0 Co-authored-by: dcoscia --- pina/geometry/simplex.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pina/geometry/simplex.py b/pina/geometry/simplex.py index 4f2e3623..b04ad537 100644 --- a/pina/geometry/simplex.py +++ b/pina/geometry/simplex.py @@ -240,8 +240,7 @@ def sample(self, n, mode="random", variables="all"): if self._sample_surface: sample_pts = self._sample_boundary_randomly(n) else: - sample_pts = self._sample_interior_randomly(n, variables - ) + sample_pts = self._sample_interior_randomly(n, variables) else: raise NotImplementedError(f"mode={mode} is not implemented.")