Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kclowes committed Jan 7, 2022
1 parent 5c71f86 commit 67443fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions docs/providers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -389,12 +389,11 @@ AsyncHTTPProvider
>>> w3 = Web3(
... AsyncHTTPProvider("http://127.0.0.1:8545"),
... modules={'eth': (AsyncEth,),
... 'net': (AsyncNet,),
... 'geth': (Geth,
... {'txpool': (AsyncGethTxPool,)}
... )
... },
... middlewares=[]) # See supported middleware section below for middleware options
... 'net': (AsyncNet,),
... 'geth': (Geth,
... {'txpool': (AsyncGethTxPool,)})
... },
... middlewares=[]) # See supported middleware section below for middleware options
Under the hood, the ``AsyncHTTPProvider`` uses the python
`aiohttp <https://docs.aiohttp.org/en/stable/>`_ library for making requests.
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/go_ethereum/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
AsyncEthModuleTest,
AsyncNetModuleTest,
EthModuleTest,
GoEthereumAsyncTxPoolModuleTest,
GoEthereumAdminModuleTest,
GoEthereumAsyncTxPoolModuleTest,
GoEthereumPersonalModuleTest,
GoEthereumTxPoolModuleTest,
NetModuleTest,
Expand Down

0 comments on commit 67443fc

Please sign in to comment.