Skip to content

Commit

Permalink
fix: ) in wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 21, 2024
1 parent fffc052 commit 5054dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth_portfolio/_ledgers/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ async def get_traces(filter_params: TraceFilterParams) -> List[FilterTrace]:
)
return []
semaphore_key = tuple(
sorted(tuple(filter_params.get(x, ("",)) for x in ("toAddress", "fromAddress")))
sorted(tuple(filter_params.get(x, ("",))) for x in ("toAddress", "fromAddress"))
)
async with _trace_semaphores[semaphore_key]:
return await _check_traces(await trace_filter(**filter_params))
Expand Down

0 comments on commit 5054dc1

Please sign in to comment.