Browse Source

Don't make session a keyword only argument.

pull/728/head
Rapptz 8 years ago
parent
commit
754f3a2ae9
  1. 2
      discord/webhook.py

2
discord/webhook.py

@ -131,7 +131,7 @@ class AsyncWebhookAdapter(WebhookAdapter):
The session to use to send requests.
"""
def __init__(self, *, session):
def __init__(self, session):
self.session = session
self.loop = session.loop

Loading…
Cancel
Save