Python

Python

Made by DeepSource

No blank lines allowed before class docstring FLK-D211

Documentation
Minor

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.'''