Skip to content

Commit 8beb154

Browse files
[pylint] Disable new messages raised since last pre-commit auto-update
1 parent 28fae70 commit 8beb154

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ disable = [
284284
"useless-import-alias",
285285
"useless-return",
286286
"using-constant-test",
287-
"wrong-import-order",
287+
"wrong-import-order", # handled by isort / ruff
288+
"wrong-import-position", # handled by isort / ruff
288289
]
289290

290291
[tool.check-wheel-contents]

testing/test_mark_expression.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def mark_matcher() -> MarkMatcher:
243243
markers = [
244244
pytest.mark.number_mark(a=1, b=2, c=3, d=999_999).mark,
245245
pytest.mark.builtin_matchers_mark(x=True, y=False, z=None).mark,
246-
pytest.mark.str_mark(
246+
pytest.mark.str_mark( # pylint: disable-next=non-ascii-name
247247
m="M", space="with space", empty="", aaאבגדcc="aaאבגדcc", אבגד="אבגד"
248248
).mark,
249249
]

0 commit comments

Comments
 (0)