Skip to content

Commit

Permalink
Merge pull request #678 from ecalifornica/fix-linter-error-F522
Browse files Browse the repository at this point in the history
Remove unused string format argument
  • Loading branch information
reece committed Sep 10, 2023
2 parents 95b4b63 + 1154b6f commit 702f26e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hgvs/decorators/lru_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __setstate__(self, _):
self.hashvalue = hash(tuple(self))

def __repr__(self):
return "_HashedSeq({tuple!r})".format(self=self, tuple=tuple(self))
return "_HashedSeq({tuple!r})".format(tuple=tuple(self))


def _make_key(
Expand Down

0 comments on commit 702f26e

Please sign in to comment.