Standardize on 'import numpy as np' throughout the codebase

This commit is contained in:
Vrushal
2024-06-26 00:19:04 +05:30
committed by Peter Cock
parent 81eb70b107
commit 97d4660a04
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -11,7 +11,7 @@
import unittest
try:
import numpy # noqa F401
import numpy as np # noqa F401
except ImportError:
from Bio import MissingPythonDependencyError