Remove more unused imports (F401)

Again, found by linting.
This commit is contained in:
Peter J. A. Cock
2024-06-27 00:20:46 +09:00
committed by Peter Cock
parent 87350ad4df
commit 81eb70b107
7 changed files with 0 additions and 9 deletions

View File

@ -50,7 +50,6 @@ You are expected to use this module via the Bio.Align functions.
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# ------------------------------------------------------------------------------
import array
import copy
import io
import itertools

View File

@ -23,7 +23,6 @@ import numpy as np
from Bio.Align import Alignment
from Bio.Align import Alignments
from Bio.Align import bigbed
from Bio.Align import psl
from Bio.Align.bigbed import AutoSQLTable
from Bio.Align.bigbed import Field
from Bio.Seq import reverse_complement

View File

@ -29,12 +29,10 @@ zero-based end position. We can therefore manipulate ``start`` and
``start + size`` as python list slice boundaries.
"""
import itertools
import shlex
from Bio.Align import Alignment
from Bio.Align import interfaces
from Bio.Seq import reverse_complement
from Bio.Seq import Seq
from Bio.SeqRecord import SeqRecord

View File

@ -11,7 +11,6 @@ You are expected to use this module via the Bio.Align functions.
from Bio.Align import Alignment
from Bio.Align import interfaces
from Bio.Seq import reverse_complement
from Bio.Seq import Seq
from Bio.SeqRecord import SeqRecord

View File

@ -20,7 +20,6 @@ See also the Seq_ wiki and the chapter in our tutorial:
"""
import array
import collections
import numbers
import warnings

View File

@ -13,8 +13,6 @@
You are expected to use this module via the Bio.SeqIO functions.
"""
import warnings
from Bio.Seq import Seq
from Bio.SeqRecord import SeqRecord

View File

@ -6,7 +6,6 @@
# package.
"""Code for dealing with Codon Alignments."""
import copy
import warnings
from collections.abc import Iterable
from collections.abc import Mapping