diff --git a/.pylintrc b/.pylintrc index b40cfb8..e043529 100644 --- a/.pylintrc +++ b/.pylintrc @@ -10,4 +10,5 @@ invalid-name, too-many-locals, too-many-public-methods, - too-many-statements + too-many-statements, + arguments-differ diff --git a/issues/modals.py b/issues/modals.py index c845eef..311eab1 100644 --- a/issues/modals.py +++ b/issues/modals.py @@ -2,8 +2,6 @@ import aiohttp import discord from redbot.core import Config -# pylint: disable=arguments-differ - # # Misc. functions # diff --git a/send/send.py b/send/send.py index 89f8310..3a8d78e 100644 --- a/send/send.py +++ b/send/send.py @@ -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."""