From e88a3154ee0e22650f32db16c4145a834f3322ff Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Fri, 30 Aug 2024 22:03:28 -0400 Subject: [PATCH] fix: extra `)` --- eth_portfolio/structs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth_portfolio/structs.py b/eth_portfolio/structs.py index bfbf097e..120e33ed 100644 --- a/eth_portfolio/structs.py +++ b/eth_portfolio/structs.py @@ -118,7 +118,7 @@ def __init_subclass__(cls, **kwargs): # Replace {cls_name} in attribute-level docstrings for key, attr in cls.__dict__.items(): if attr.__doc__ and "{cls_name}" in attr.__doc__: - attr.__doc__ = attr.__doc__.replace("{cls_name}", cls.__name__)) + attr.__doc__ = attr.__doc__.replace("{cls_name}", cls.__name__) class AccessListEntry(Struct, frozen=True):