[fixed] module 'numpy' is imported with both 'import' and 'import from' (#4544)

* [fixed] module 'numy' is imported with both 'import' and 'import from'

* remove commented
This commit is contained in:
arfy slowy 2021-07-26 19:52:52 +07:00 committed by GitHub
parent 7634cf0d60
commit 6732fa0131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,10 +6,9 @@ Reference:
from typing import Tuple from typing import Tuple
import numpy as np import numpy as np
from numpy import ndarray
def lower_upper_decomposition(table: ndarray) -> Tuple[ndarray, ndarray]: def lower_upper_decomposition(table: np.ndarray) -> Tuple[np.ndarray, np.ndarray]:
"""Lower-Upper (LU) Decomposition """Lower-Upper (LU) Decomposition
Example: Example: