From be2ab89982d311ec415e50462ddd5bfd7e2e5e67 Mon Sep 17 00:00:00 2001 From: Pablito Date: Tue, 3 Dec 2024 11:25:47 +0100 Subject: [PATCH] Changed the import block --- maths/polynomials/legendre.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/maths/polynomials/legendre.py b/maths/polynomials/legendre.py index 74865729f..a0d63c2a2 100644 --- a/maths/polynomials/legendre.py +++ b/maths/polynomials/legendre.py @@ -1,6 +1,9 @@ -from numpy.polynomial import Polynomial +# Imports de bibliothèques standard from math import factorial + +# Imports de bibliothèques tierces import pytest +from numpy.polynomial import Polynomial def legendre(n: int) -> list[float]: