Skip to content

Commit 3529dcd

Browse files
committed
chore: ignore line lenght in specific docs
1 parent 1feedb0 commit 3529dcd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ lint.select = [
145145
# pydocstyle
146146
"D",
147147
]
148-
line-length = 105
148+
line-length = 100
149149
target-version = "py38"
150150
extend-exclude = ["**/__pycache__", ".pytest_cache", "site"]
151151

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-
"""
29+
""" # noqa: E501F
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-
"""
52+
""" # noqa: E501F
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)