Python

Python

By DeepSource

No blank lines allowed after function docstring FLK-D202

Documentation
Minor
Autofix

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

Not preferred:

def example():
    '''Bad docstring.'''

    pass

Preferred:

def example():
    '''Good docstring.'''
    pass