(found '''-quotes) _correct_bias.py:20 in public function `get_module`: D400: First line should end with a period (not 'l') _correct_bias.py:25 in public function `parent_child_names`: D200: One-line docstring should fit on one line with quotes (found 2) _correct_bias.py:25 ...
The new D403 (#165) triggers an error when an extra quotation mark is in the docstring, such as """...""" If the docstring has an extra quotation mark at the end ( """...""") it will trigger D400, only if it is a one-line docstring. Th...