Skip to content

Commit

Permalink
Merge pull request #680 from ecalifornica/fix-linter-error-F521
Browse files Browse the repository at this point in the history
Fix typo in formatted string
  • Loading branch information
reece committed Sep 10, 2023
2 parents a5aecd1 + 4e28925 commit 95b4b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hgvs/transcriptmapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def __init__(self, hdp, tx_ac, alt_ac, alt_aln_method):

def __str__(self):
return (
"{self.__class__.__name__}: {self.tx_ac} ~ {self.alt_ac} ~ {self.alt_aln_method); "
"{self.__class__.__name__}: {self.tx_ac} ~ {self.alt_ac} ~ {self.alt_aln_method}; "
"{strand_pm} strand; {n_exons} exons; offset={self.gc_offset}".format(
self=self, n_exons=len(self.tx_exons), strand_pm=strand_int_to_pm(self.strand)
)
Expand Down

0 comments on commit 95b4b63

Please sign in to comment.