Browse Source
[commands] Fix types for Bot.is_owner
pull/7514/head
Alex Nørgaard
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
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 |
|
|
|