Add missing @staticmethod to Red.send_filtered (#2143)

Method was previously missing `self` argument but was missing static decorator.
This commit is contained in:
zephyrkul 2018-09-23 07:34:57 -06:00 committed by Toby Harradine
parent e27682abd3
commit a301b2c758

View File

@ -294,6 +294,7 @@ class RedBase(commands.GroupMixin, commands.bot.BotBase, RPCMixin):
if pkg_name.startswith("redbot.cogs."):
del sys.modules["redbot.cogs"].__dict__[name]
@staticmethod
async def send_filtered(
destination: discord.abc.Messageable,
filter_mass_mentions=True,