Skip to content

Commit

Permalink
fix: mypy err
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler committed Apr 1, 2024
1 parent bbbe9bc commit 966b30e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dank_mids/brownie_patch/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class _DankMethodMixin(Generic[_EVMType]):
async def __await__(self):
"""Asynchronously call the contract method without arguments at the latest block and await the result."""
return self.coroutine().__await__()
async def coroutine(
async def coroutine( # type: ignore [empty-body]
self,
*args: Any,
block_identifier: Optional[int] = None,
Expand Down

0 comments on commit 966b30e

Please sign in to comment.