Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 9757f9a

Browse files
committed
nit
1 parent c581816 commit 9757f9a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pylint_pytest/checkers/fixture.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,11 @@ class FixtureChecker(BasePytestChecker):
4747
'W6403': (
4848
'Using a deprecated positional arguments for fixture',
4949
'deprecated-positional-argument-for-pytest-fixture',
50-
'Pass scope as a kwarg, not positional arg, which is deprecated in future pytest.'
51-
'Take a look at: https://docs.pytest.org/en/stable/deprecations.html#pytest-fixture-arguments-are-keyword-only',
50+
(
51+
'Pass scope as a kwarg, not positional arg, which is deprecated in future pytest. '
52+
'Take a look at: https://docs.pytest.org/en/stable/deprecations.html#pytest-fixture-arguments-are-keyword-only'
53+
),
54+
),
5255
'F6401': (
5356
(
5457
'pylint-pytest plugin cannot enumerate and collect pytest fixtures. '

0 commit comments

Comments
 (0)