mirror of
https://github.com/biopython/biopython.git
synced 2025-10-20 13:43:47 +08:00
Standardize on 'import numpy as np' throughout the codebase
This commit is contained in:
@ -21,7 +21,7 @@ import unittest
|
||||
import warnings
|
||||
|
||||
try:
|
||||
import numpy # noqa: F401
|
||||
import numpy as np # noqa: F401
|
||||
except ImportError:
|
||||
from Bio import MissingPythonDependencyError
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
import unittest
|
||||
|
||||
try:
|
||||
import numpy # noqa F401
|
||||
import numpy as np # noqa F401
|
||||
except ImportError:
|
||||
from Bio import MissingPythonDependencyError
|
||||
|
||||
|
Reference in New Issue
Block a user