mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-05-16 10:49:24 +00:00
Remove redundant VocalGuildChannel in GuildChannel Union
This commit is contained in:
parent
3bca40352e
commit
efd28fc1e0
@ -78,7 +78,7 @@ from .automod import AutoModRule, AutoModAction
|
|||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .abc import PrivateChannel
|
from .abc import PrivateChannel
|
||||||
from .message import MessageableChannel
|
from .message import MessageableChannel
|
||||||
from .guild import GuildChannel, VocalGuildChannel
|
from .guild import GuildChannel
|
||||||
from .http import HTTPClient
|
from .http import HTTPClient
|
||||||
from .voice_client import VoiceProtocol
|
from .voice_client import VoiceProtocol
|
||||||
from .client import Client
|
from .client import Client
|
||||||
@ -98,7 +98,7 @@ if TYPE_CHECKING:
|
|||||||
from .types.command import GuildApplicationCommandPermissions as GuildApplicationCommandPermissionsPayload
|
from .types.command import GuildApplicationCommandPermissions as GuildApplicationCommandPermissionsPayload
|
||||||
|
|
||||||
T = TypeVar('T')
|
T = TypeVar('T')
|
||||||
Channel = Union[GuildChannel, VocalGuildChannel, PrivateChannel, PartialMessageable]
|
Channel = Union[GuildChannel, PrivateChannel, PartialMessageable]
|
||||||
|
|
||||||
|
|
||||||
class ChunkRequest:
|
class ChunkRequest:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user