From ba4d6e8c72a405b5eaae2cbda377ca1d97c10247 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 22 Jul 2016 06:55:35 -0500 Subject: [PATCH] Created a test command to test the type hinting --- cogs/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/core.py b/cogs/core.py index fab003a..3bf0c41 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -255,8 +255,8 @@ class Core: await self.bot.say(rand_image) @commands.command() - async def test(self, *, msg): - await self.bot.say("```Type: {}\nMessage: {}".format(type(msg),msg)) + async def test(self, *msg): + await self.bot.say("```Type: {}\nMessage: {}```".format(type(msg),msg)) def setup(bot):