From 4bf5b67002530920d228f91fba45b961cc00de8e Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:06:41 -0400 Subject: [PATCH] fix: missing ) --- eth_portfolio/_loaders/token_transfer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth_portfolio/_loaders/token_transfer.py b/eth_portfolio/_loaders/token_transfer.py index 31acd133..68786af2 100644 --- a/eth_portfolio/_loaders/token_transfer.py +++ b/eth_portfolio/_loaders/token_transfer.py @@ -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