misc(pylint): added arguments-differ rule to pylint ignore
Some checks failed
Pylint / Pylint (push) Failing after 1m9s

This commit is contained in:
Seaswimmer 2023-09-24 20:22:23 -04:00
parent 71d006165e
commit ce3da3c91b
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8
3 changed files with 2 additions and 5 deletions

View file

@ -10,4 +10,5 @@
invalid-name,
too-many-locals,
too-many-public-methods,
too-many-statements
too-many-statements,
arguments-differ

View file

@ -2,8 +2,6 @@ import aiohttp
import discord
from redbot.core import Config
# pylint: disable=arguments-differ
#
# Misc. functions
#

View file

@ -2,8 +2,6 @@ from typing import Union
import discord
from redbot.core import commands, app_commands
# pylint: disable=arguments-differ
class Send(commands.Cog):
"""Allows you to send messages as the bot account."""