Unnecessary `pass` statementPYL-W0107
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.'''