Python

Python

Made by DeepSource

Multi-line docstring closing quotes should be on a separate line FLK-D209

Documentation
Minor

Not Preferred:

def foo():
    """This is an example docstring.
    To show how to write multi-line docstring."""

Preferred:

def foo():
    """
    This is an example docstring.
    To show how to write multi-line docstring.
    """