Python

Python

Made by DeepSource

1 blank line required after class docstring FLK-D204

Documentation
Minor

There should be exactly one blank line after the class docstring.

Not preferred:

class example:
    """Bad docstring."""
    ...

Preferred:

class  example:
    """Good docstring."""

    ...