Make guild and guilds args in Bot.remove_cog() keyword-only

This commit is contained in:
jack1142 2022-03-21 00:01:37 +01:00 committed by GitHub
parent 5fa32540a4
commit 6dc314628e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -667,6 +667,7 @@ class BotBase(GroupMixin[None]):
self,
name: str,
/,
*,
guild: Optional[Snowflake] = MISSING,
guilds: List[Snowflake] = MISSING,
) -> Optional[Cog]: