1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Created a test command to test the type hinting

This commit is contained in:
Phxntxm 2016-07-22 06:55:35 -05:00
parent d9931dcf3b
commit ba4d6e8c72

View file

@ -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):