Browse Source

Validate kwargs in Client.start

pull/2172/head
NCPlayz 6 years ago
committed by Rapptz
parent
commit
38eb2b4828
  1. 9
      discord/client.py

9
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)

Loading…
Cancel
Save