Python

Python

Made by DeepSource

Unnecessary pass statement PYL-W0107

Style
Minor
Autofix

The pass statement used here is not necessary. You can safely remove this.

Not Preferred:

class Docstring:
    '''This is a dummy class with docstring.'''
    pass

Preferred:

class Docstring:
    '''This is a dummy class with docstring.'''