Skip to content

Commit 0fba947

Browse files
committed
chill
1 parent 544fc6d commit 0fba947

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ ignore = [
181181
"D213", # conflicts with D212
182182
"D400",
183183
"D401",
184+
"D403",
184185
"D415",
185186
# excessive exception message requirements
186187
"TRY003",

src/biocommons/example/marvin_adjacent_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55

66
def test_get_quote() -> None:
7-
"""Test get_quote"""
7+
"""test get_quote"""
88
assert get_quote() is not None # noqa: S101

src/biocommons/example/tests/marvin_subdir_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55

66
def test_get_quote(all_quotes: list[str]) -> None:
7-
"""Test get_quote"""
7+
"""test get_quote"""
88
# NB: all_quotes argument is a test fixture; see ./conftest.py
99
assert get_quote() in all_quotes # noqa: S101

0 commit comments

Comments
 (0)