mirror of
https://github.com/biopython/biopython.git
synced 2025-10-20 13:43:47 +08:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
committed by
Peter Cock
parent
8aaa7ffc41
commit
ed51b11450
@ -696,7 +696,7 @@ np.array([['C', 'T', 'G', 'G', 'C', 'G', 'T', 'C', 'C', 'G', 'G',
|
||||
filenames = set(filenames)
|
||||
n = len(filenames)
|
||||
self.assertEqual(n, 3)
|
||||
lengths = {filename: 0 for filename in filenames}
|
||||
lengths = dict.fromkeys(filenames, 0)
|
||||
for alignment in saved_alignments:
|
||||
for record in alignment.sequences:
|
||||
filename = record.id
|
||||
|
Reference in New Issue
Block a user