fixing pylint false positives
This commit is contained in:
parent
a54cdf40d7
commit
87fffd84ad
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -15,7 +15,7 @@ prefix = os.getenv('PREFIX')
|
|||
|
||||
class Client(commands.CommandsClient):
|
||||
# This class contains all of the commands the bot uses.
|
||||
async def get_prefix(self, message: revolt.Message, input: str = prefix):
|
||||
async def get_prefix(self, message: revolt.Message, input: str = prefix): # pylint: disable=W0622, E0601
|
||||
return input
|
||||
|
||||
@commands.command()
|
||||
|
|
Loading…
Reference in a new issue