Python

Python

By DeepSource

No blank lines allowed before class docstring FLK-D211

Documentation

There shouldn't be any blank lines before the class docstring. Remove the blank lines to fix this issue.

Not preferred:

class Example:

    '''Bad docstring.'''

Preferred:

class Example:
    '''Good docstring.'''