Skip to content

Commit 45f997b

Browse files
committed
fix: lint rule name
1 parent c75cc73 commit 45f997b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/validators/crypto_addresses/bsc_address.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def bsc_address(value: str, /):
2626
Returns:
2727
(Literal[True]): If `value` is a valid bsc address.
2828
(ValidationError): If `value` is an invalid bsc address.
29-
""" # noqa: E501F
29+
""" # noqa: E501
3030
if not value:
3131
return False
3232

src/validators/crypto_addresses/eth_address.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def eth_address(value: str, /):
4949
Returns:
5050
(Literal[True]): If `value` is a valid ethereum address.
5151
(ValidationError): If `value` is an invalid ethereum address.
52-
""" # noqa: E501F
52+
""" # noqa: E501
5353
if not _keccak_flag:
5454
raise ImportError(
5555
"Do `pip install validators[crypto-eth-addresses]` to perform `eth_address` validation."

0 commit comments

Comments
 (0)