Skip to content

Commit be2ab89

Browse files
committed
Changed the import block
1 parent bb1d79f commit be2ab89

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

maths/polynomials/legendre.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
from numpy.polynomial import Polynomial
1+
# Imports de bibliothèques standard
22
from math import factorial
3+
4+
# Imports de bibliothèques tierces
35
import pytest
6+
from numpy.polynomial import Polynomial
47

58

69
def legendre(n: int) -> list[float]:

0 commit comments

Comments
 (0)