From 67443fcf49c782b7ab5f784a363f6cae43cc42dc Mon Sep 17 00:00:00 2001 From: kclowes Date: Fri, 7 Jan 2022 11:47:04 -0700 Subject: [PATCH] Fix lint --- docs/providers.rst | 11 +++++------ tests/integration/go_ethereum/common.py | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/providers.rst b/docs/providers.rst index bcbe85579c..ee729c7bec 100644 --- a/docs/providers.rst +++ b/docs/providers.rst @@ -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 `_ library for making requests. diff --git a/tests/integration/go_ethereum/common.py b/tests/integration/go_ethereum/common.py index f360a4ac5b..86448bff46 100644 --- a/tests/integration/go_ethereum/common.py +++ b/tests/integration/go_ethereum/common.py @@ -4,8 +4,8 @@ AsyncEthModuleTest, AsyncNetModuleTest, EthModuleTest, - GoEthereumAsyncTxPoolModuleTest, GoEthereumAdminModuleTest, + GoEthereumAsyncTxPoolModuleTest, GoEthereumPersonalModuleTest, GoEthereumTxPoolModuleTest, NetModuleTest,