Browse Source

Give Client.email a default value of None.

pull/244/head
Rapptz 9 years ago
parent
commit
8d1867393c
  1. 1
      discord/client.py

1
discord/client.py

@ -126,6 +126,7 @@ class Client:
"""
def __init__(self, *, loop=None, **options):
self.ws = None
self.email = None
self.loop = asyncio.get_event_loop() if loop is None else loop
self._listeners = []
self.cache_auth = options.get('cache_auth', True)

Loading…
Cancel
Save