(self, docstring)
| 280 | ) |
| 281 | |
| 282 | def check(self, docstring): |
| 283 | for match_obj in self._pattern.finditer(docstring): |
| 284 | comment = match_obj.group('comment').strip() |
| 285 | if not comment.startswith('#'): |
| 286 | return True |
| 287 | |
| 288 | return False |
| 289 | |
| 290 | |
| 291 | class SkipNoReason(BadStatement): |
no test coverage detected