Increase default timeout for ctx.send_interactive to 60 (#6352)

This commit is contained in:
Louis Dominic 2024-04-12 12:18:40 +07:00 committed by GitHub
parent f54499eaba
commit 97b467939c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -151,7 +151,7 @@ class Context(DPYContext):
self, self,
messages: Iterable[str], messages: Iterable[str],
box_lang: Optional[str] = None, box_lang: Optional[str] = None,
timeout: int = 15, timeout: int = 60,
join_character: str = "", join_character: str = "",
) -> List[discord.Message]: ) -> List[discord.Message]:
""" """