misc(pylint): added arguments-differ rule to pylint ignore
Some checks failed
Pylint / Pylint (push) Failing after 1m9s
Some checks failed
Pylint / Pylint (push) Failing after 1m9s
This commit is contained in:
parent
71d006165e
commit
ce3da3c91b
3 changed files with 2 additions and 5 deletions
|
@ -10,4 +10,5 @@
|
||||||
invalid-name,
|
invalid-name,
|
||||||
too-many-locals,
|
too-many-locals,
|
||||||
too-many-public-methods,
|
too-many-public-methods,
|
||||||
too-many-statements
|
too-many-statements,
|
||||||
|
arguments-differ
|
||||||
|
|
|
@ -2,8 +2,6 @@ import aiohttp
|
||||||
import discord
|
import discord
|
||||||
from redbot.core import Config
|
from redbot.core import Config
|
||||||
|
|
||||||
# pylint: disable=arguments-differ
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Misc. functions
|
# Misc. functions
|
||||||
#
|
#
|
||||||
|
|
|
@ -2,8 +2,6 @@ from typing import Union
|
||||||
import discord
|
import discord
|
||||||
from redbot.core import commands, app_commands
|
from redbot.core import commands, app_commands
|
||||||
|
|
||||||
# pylint: disable=arguments-differ
|
|
||||||
|
|
||||||
class Send(commands.Cog):
|
class Send(commands.Cog):
|
||||||
"""Allows you to send messages as the bot account."""
|
"""Allows you to send messages as the bot account."""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue