Browse Source
Make guild and guilds args in Bot.remove_cog() keyword-only
pull/7737/head
jack1142
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
discord/ext/commands/bot.py
|
@ -667,6 +667,7 @@ class BotBase(GroupMixin[None]): |
|
|
self, |
|
|
self, |
|
|
name: str, |
|
|
name: str, |
|
|
/, |
|
|
/, |
|
|
|
|
|
*, |
|
|
guild: Optional[Snowflake] = MISSING, |
|
|
guild: Optional[Snowflake] = MISSING, |
|
|
guilds: List[Snowflake] = MISSING, |
|
|
guilds: List[Snowflake] = MISSING, |
|
|
) -> Optional[Cog]: |
|
|
) -> Optional[Cog]: |
|
|