Skip to content

Commit 7284afa

Browse files
committed
Address linting issue
1 parent cda1ded commit 7284afa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web3/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def is_encodable(self, _type: TypeStr, value: Any) -> bool:
347347
@property
348348
def ens(self) -> Union[ENS, AsyncENS, "Empty"]:
349349
if self._ens is empty:
350-
return AsyncENS.from_web3(self) if self.eth.is_async else ENS.from_web3(self)
350+
return AsyncENS.from_web3(self) if self.eth.is_async else ENS.from_web3(self) # noqa: E501
351351

352352
return self._ens
353353

0 commit comments

Comments
 (0)