Skip to content

Commit

Permalink
mypy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhagarwal03 committed Jul 4, 2024
1 parent bb0b4b4 commit 11a586b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/balanceof_imbalances.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ def get_eth_balance(
print(f"Error fetching ETH balance: {e}")
return None

def extract_token_addresses(
self, tx_receipt: TxReceipt
) -> Set[ChecksumAddress]:
def extract_token_addresses(self, tx_receipt: TxReceipt) -> Set[ChecksumAddress]:
"""Extract unique token addresses from 'Transfer' events in a transaction receipt."""
token_addresses: Set[ChecksumAddress] = set()
transfer_topics = {
Expand Down

0 comments on commit 11a586b

Please sign in to comment.