Skip to content

Commit

Permalink
STY: pre-commit linting with black and isort
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinHuttley committed May 2, 2024
1 parent 83af9f8 commit 407b927
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cogent3/core/alignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -2615,7 +2615,9 @@ def __repr__(self):
seqs.append(f"{name}[{delimiter.join(elts)}]")
seqs = ", ".join(seqs)

return f"{len(self.names)} x {self.seq_len} {self.moltype.label} alignment: {seqs}"
return (
f"{len(self.names)} x {self.seq_len} {self.moltype.label} alignment: {seqs}"
)

def alignment_quality(self, app_name: str = "ic_score", **kwargs):
"""
Expand Down

0 comments on commit 407b927

Please sign in to comment.