We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c581816 commit 9757f9aCopy full SHA for 9757f9a
pylint_pytest/checkers/fixture.py
@@ -47,8 +47,11 @@ class FixtureChecker(BasePytestChecker):
47
'W6403': (
48
'Using a deprecated positional arguments for fixture',
49
'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',
+ (
+ '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
55
'F6401': (
56
(
57
'pylint-pytest plugin cannot enumerate and collect pytest fixtures. '
0 commit comments