Python logoPython/
PYL-W0107

Unnecessary `pass` statementPYL-W0107

Minor severityMinor
Style categoryStyle

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