Fix import to appease mypy's import resolution

This commit is contained in:
Ryu Juheon 2022-09-18 03:11:50 +09:00 committed by GitHub
parent ce06beeb6c
commit e1961676a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,7 +69,7 @@ if TYPE_CHECKING:
# Generally, these two libraries are supposed to be separate from each other.
# However, for type hinting purposes it's unfortunately necessary for one to
# reference the other to prevent type checking errors in callbacks
from discord.ext.commands import Cog
from discord.ext import commands
ErrorFunc = Callable[[Interaction, AppCommandError], Coroutine[Any, Any, None]]
@ -105,7 +105,7 @@ Error = Union[
UnboundError,
]
Check = Callable[['Interaction'], Union[bool, Coro[bool]]]
Binding = Union['Group', 'Cog']
Binding = Union['Group', 'commands.Cog']
if TYPE_CHECKING: