Skip to content

Commit 85c3467

Browse files
committed
Improve consistency
1 parent 90edee9 commit 85c3467

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flake8_docstrings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
pydocstyle_version = tuple(
1717
int(num) for num in pep257.__version__.split(".")
1818
)
19-
supports_ignore_inline_noqa = pydocstyle_version > (5, 1, 1)
19+
supports_ignore_inline_noqa = pydocstyle_version >= (6, 0, 0)
2020
supports_property_decorators = pydocstyle_version >= (6, 2, 0)
2121
supports_ignore_self_only_init = pydocstyle_version >= (6, 3, 0)
2222
except ImportError:

0 commit comments

Comments
 (0)