From fe498b1d28a9e476c342547eca105192cf947de0 Mon Sep 17 00:00:00 2001 From: Izhar Ahmad <54180221+nerdguyahmad@users.noreply.github.com> Date: Mon, 6 Sep 2021 09:30:36 +0500 Subject: [PATCH] Make id parameter positional only --- discord/webhook/async_.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index d1ed1ade01..fb14337e7d 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -1405,7 +1405,7 @@ async def send( return msg - async def fetch_message(self, id: int) -> WebhookMessage: + async def fetch_message(self, id: int, /) -> WebhookMessage: """|coro| Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook.