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]: