You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the eth module is called eth regardless of whether or not it refers to the Eth module or the AsyncEth module, the typing is a little bit funky. Once AsyncEth is completely switched over to mirror the functionality of the Eth module, we can make the eth attr here be Union[AsyncEth, Eth]. Then we can go through and remove type: ignores throughout codebase on all await w3.eth... lines.
The text was updated successfully, but these errors were encountered:
What was wrong?
Because the eth module is called
eth
regardless of whether or not it refers to theEth
module or theAsyncEth
module, the typing is a little bit funky. OnceAsyncEth
is completely switched over to mirror the functionality of theEth
module, we can make theeth
attr here beUnion[AsyncEth, Eth]
. Then we can go through and removetype: ignore
s throughout codebase on allawait w3.eth...
lines.The text was updated successfully, but these errors were encountered: