Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
etan-status committed Jun 1, 2024
1 parent ee17bb0 commit 1d3bb9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remerkleable/stable_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __new__(cls, backing: Optional[Node] = None, hook: Optional[ViewHook] = None
active_fields.set(findex, True)
input_nodes.append(fnode)
if len(kwargs) > 0:
raise AttributeError(f'Fields [{''.join(kwargs.keys())}] unknown in `{cls.__name__}`')
raise AttributeError(f'Fields [{"".join(kwargs.keys())}] unknown in `{cls.__name__}`')

backing = PairNode(
left=subtree_fill_to_contents(input_nodes, get_depth(cls.N)),
Expand Down

0 comments on commit 1d3bb9c

Please sign in to comment.