Browse Source

[commands] Fix types for Bot.is_owner

pull/7514/head
Alex Nørgaard 3 years ago
committed by GitHub
parent
commit
bfaee44b1f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/ext/commands/bot.py

3
discord/ext/commands/bot.py

@ -50,6 +50,7 @@ if TYPE_CHECKING:
import importlib.machinery
from discord.message import Message
from discord.abc import User
from ._types import (
Check,
CoroFunc,
@ -333,7 +334,7 @@ class BotBase(GroupMixin):
# type-checker doesn't distinguish between functions and methods
return await discord.utils.async_all(f(ctx) for f in data) # type: ignore
async def is_owner(self, user: discord.User) -> bool:
async def is_owner(self, user: User) -> bool:
"""|coro|
Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of

Loading…
Cancel
Save