1
0
mirror of https://github.com/Rapptz/discord.py.git synced 2025-11-02 06:22:51 +00:00

Don't make session a keyword only argument.

This commit is contained in:
Rapptz
2017-08-21 14:57:57 -04:00
parent 84f38b166e
commit 754f3a2ae9

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