Skip to content

Commit 1feedb0

Browse files
committed
changed line-length due doctest output
- bsc_address.py:20:101: E501 Line too long (103 > 100) - all tox env passed
1 parent 8ddc7fb commit 1feedb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 = 100
148+
line-length = 105
149149
target-version = "py38"
150150
extend-exclude = ["**/__pycache__", ".pytest_cache", "site"]
151151

tests/test_url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def test_returns_true_on_valid_private_url(value: str, private: Optional[bool]):
156156
":// should fail",
157157
"http://foo.bar/foo(bar)baz quux",
158158
"http://-error-.invalid/",
159-
"http://www.\uFFFD.ch",
159+
"http://www.\ufffd.ch",
160160
"http://-a.b.co",
161161
"http://a.b-.co",
162162
"http://1.1.1.1.1",

0 commit comments

Comments
 (0)