Skip to content

Commit 24c6be3

Browse files
committed
Lint
1 parent a7189f7 commit 24c6be3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/integration/go_ethereum/test_goethereum_http.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import pytest
2+
23
import pytest_asyncio
34

45
from tests.utils import (

web3/_utils/module_testing/web3_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def test_solidityKeccak(
179179
self, web3: "Web3", types: Sequence[TypeStr], values: Sequence[Any], expected: HexBytes
180180
) -> None:
181181
if isinstance(expected, type) and issubclass(expected, Exception):
182-
with pytest.raises(expected):
182+
with pytest.raises(expected): # type: ignore
183183
web3.solidityKeccak(types, values)
184184
return
185185

0 commit comments

Comments
 (0)