@@ -565,9 +565,7 @@ class AsyncWeb3ModuleTest(Web3ModuleTest):
565565 # an asynchronous test should have the exact same name.
566566
567567 @pytest .mark .asyncio
568- async def test_web3_client_version (
569- self , async_w3 : AsyncWeb3 [Any ]
570- ) -> None : # noqa: E501
568+ async def test_web3_client_version (self , async_w3 : AsyncWeb3 [Any ]) -> None :
571569 client_version = await async_w3 .client_version
572570 self ._check_web3_client_version (client_version )
573571
@@ -643,7 +641,7 @@ async def test_batch_requests(
643641 async def test_batch_requests_initialized_as_object (
644642 self ,
645643 async_w3 : AsyncWeb3 [Any ],
646- async_math_contract : "AsyncContract" , # noqa: E501
644+ async_math_contract : "AsyncContract" ,
647645 ) -> None :
648646 batch = async_w3 .batch_requests ()
649647 batch .add (async_w3 .eth .get_block (1 ))
@@ -690,9 +688,7 @@ async def test_batch_requests_initialized_as_object(
690688 assert cast (BlockData , b4 )["number" ] == 4
691689
692690 @pytest .mark .asyncio
693- async def test_batch_requests_clear (
694- self , async_w3 : AsyncWeb3 [Any ]
695- ) -> None : # noqa: E501
691+ async def test_batch_requests_clear (self , async_w3 : AsyncWeb3 [Any ]) -> None :
696692 async with async_w3 .batch_requests () as batch :
697693 batch .add (async_w3 .eth .get_block (1 ))
698694 batch .add (async_w3 .eth .get_block (2 ))
0 commit comments