Skip to content

Commit

Permalink
fix: missing )
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 20, 2024
1 parent e1371d9 commit 4bf5b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth_portfolio/_loaders/token_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ async def get_transaction_index(hash: str) -> int:
receipt_bytes, type=HasTxIndex, dec_hook=TransactionIndex._decode_hook
).transactionIndex
except ValidationError as e:
new = TypeError(e, receipt_bytes, decode(receipt_bytes)
new = TypeError(e, receipt_bytes, decode(receipt_bytes))
logger.exception(new)
raise new from e

Expand Down

0 comments on commit 4bf5b67

Please sign in to comment.