We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90edee9 commit 85c3467Copy full SHA for 85c3467
flake8_docstrings.py
@@ -16,7 +16,7 @@
16
pydocstyle_version = tuple(
17
int(num) for num in pep257.__version__.split(".")
18
)
19
- supports_ignore_inline_noqa = pydocstyle_version > (5, 1, 1)
+ supports_ignore_inline_noqa = pydocstyle_version >= (6, 0, 0)
20
supports_property_decorators = pydocstyle_version >= (6, 2, 0)
21
supports_ignore_self_only_init = pydocstyle_version >= (6, 3, 0)
22
except ImportError:
0 commit comments