From 38eb2b4828dfb0009ef20f6bf471d6cf3c064719 Mon Sep 17 00:00:00 2001 From: NCPlayz Date: Sun, 19 May 2019 14:42:33 +0100 Subject: [PATCH] Validate kwargs in Client.start --- discord/client.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/discord/client.py b/discord/client.py index d92e7c500..9e6067a3a 100644 --- a/discord/client.py +++ b/discord/client.py @@ -503,10 +503,19 @@ class Client: """|coro| A shorthand coroutine for :meth:`login` + :meth:`connect`. + + Raises + ------- + TypeError + An unexpected keyword argument was received. """ bot = kwargs.pop('bot', True) reconnect = kwargs.pop('reconnect', True) + + if kwargs: + raise TypeError("unexpected keyword argument(s) %s" % list(kwargs.keys())) + await self.login(*args, bot=bot) await self.connect(reconnect=reconnect)