diff options
| author | Rapptz <[email protected]> | 2017-08-21 14:57:57 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-08-21 14:57:57 -0400 |
| commit | 754f3a2ae97f90eed28f4bd9cee55c4c6e65e026 (patch) | |
| tree | e3dcacbbc43c66be884500a702576cb835812d3b /discord/webhook.py | |
| parent | Add atomic keyword argument for member role editing operations. (diff) | |
| download | discord.py-754f3a2ae97f90eed28f4bd9cee55c4c6e65e026.tar.xz discord.py-754f3a2ae97f90eed28f4bd9cee55c4c6e65e026.zip | |
Don't make session a keyword only argument.
Diffstat (limited to 'discord/webhook.py')
| -rw-r--r-- | discord/webhook.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/webhook.py b/discord/webhook.py index bd9806b3..5b8af7c4 100644 --- a/discord/webhook.py +++ b/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 |