Skip to content

Commit

Permalink
Fixed improper method call in datastructures.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fazledyn-or committed Aug 22, 2023
1 parent 88011b2 commit d71c169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web3/datastructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __iter__(self) -> Iterator[TKey]:

def __add__(self, other: Any) -> "NamedElementOnion[TKey, TValue]":
if not isinstance(other, NamedElementOnion):
raise NotImplementedError(
raise NotImplemented(
"You can only combine with another NamedElementOnion"
)
combined = self._queue.copy()
Expand Down

0 comments on commit d71c169

Please sign in to comment.