Skip to content

Commit

Permalink
fix: name error
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 12, 2024
1 parent f149b35 commit 723d2d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth_portfolio/_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def disk_cache_wrap(*args: P.args, **kwargs: P.kwargs) -> T:
return pickle.loads(await f.read())

async_result: T = await fn(*args, **kwargs)
await __cache_write(cache_path, result)
await __cache_write(cache_path, async_result)
return async_result

else:
Expand Down

0 comments on commit 723d2d0

Please sign in to comment.