From 4e289259262ed018fd5cf8a01ef66f64c5e2917a Mon Sep 17 00:00:00 2001 From: Robert Queenin <2177841+ecalifornica@users.noreply.github.com> Date: Fri, 25 Aug 2023 21:11:24 -0700 Subject: [PATCH] Fix typo in formatted string. Fixes linter error F521. --- src/hgvs/transcriptmapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hgvs/transcriptmapper.py b/src/hgvs/transcriptmapper.py index 1573698e..d534c679 100644 --- a/src/hgvs/transcriptmapper.py +++ b/src/hgvs/transcriptmapper.py @@ -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) )