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 6b02335 commit c6642a8Copy full SHA for c6642a8
flake8_docstrings.py
@@ -3,6 +3,7 @@
3
pydocstyle docstrings convention needs error code and class parser for be
4
included as module into flake8
5
"""
6
+
7
import re
8
9
supports_ignore_inline_noqa = False
@@ -156,9 +157,9 @@ def _call_check_source(self):
156
157
else None
158
)
159
if supports_ignore_self_only_init:
- check_source_kwargs[
160
- "ignore_self_only_init"
161
- ] = self.ignore_self_only_init
+ check_source_kwargs["ignore_self_only_init"] = (
+ self.ignore_self_only_init
162
+ )
163
164
return self.checker.check_source(
165
self.source,
0 commit comments