pylint-errors

C0198 (bad-docstring-quotes)

:x: Problematic code:

def foo():
    '''Docstring.'''

:heavy_check_mark: Correct code:

def foo():
    """Docstring."""

Rationale:

Used when a docstring does not have triple double quotes.