argo0n / NograBot

Discord.py bot written by Argon#0002
GNU General Public License v3.0
2 stars 1 forks source link

(PYL-W0107) Unnecessary `pass` statement #71

Closed argo0n closed 3 years ago

argo0n commented 3 years ago

Description

The pass statement used here is not necessary. You can safely remove this. #### Not Preferred: python class Docstring: '''This is a dummy class with docstring.''' pass #### Preferred: python class Docstring: '''This is a dummy class with docstring.'''

Occurrences

There are 2 occurrences of this issue in the repository.

See all occurrences on DeepSource → deepsource.io/gh/argo0n/NograBot/issue/PYL-W0107/occurrences/

argo0n commented 3 years ago

Fixed in latest commit df6c456.