Changed the import block

This commit is contained in:
Pablito 2024-12-03 11:25:47 +01:00
parent bb1d79fed8
commit be2ab89982

View File

@ -1,6 +1,9 @@
from numpy.polynomial import Polynomial # Imports de bibliothèques standard
from math import factorial from math import factorial
# Imports de bibliothèques tierces
import pytest import pytest
from numpy.polynomial import Polynomial
def legendre(n: int) -> list[float]: def legendre(n: int) -> list[float]: