Skip to content

Commit

Permalink
fix: extra )
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 31, 2024
1 parent 0bde825 commit e88a315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth_portfolio/structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit e88a315

Please sign in to comment.