Browse Source

Remove redundant VocalGuildChannel in GuildChannel Union

pull/10109/head
RioghanDer2te 3 years ago
committed by dolfies
parent
commit
ae08c79421
  1. 4
      discord/state.py

4
discord/state.py

@ -101,7 +101,7 @@ if TYPE_CHECKING:
from .abc import PrivateChannel, Snowflake as abcSnowflake from .abc import PrivateChannel, Snowflake as abcSnowflake
from .activity import ActivityTypes from .activity import ActivityTypes
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
@ -123,7 +123,7 @@ if TYPE_CHECKING:
from .types.activity import ClientStatus as ClientStatusPayload from .types.activity import ClientStatus as ClientStatusPayload
T = TypeVar('T') T = TypeVar('T')
Channel = Union[GuildChannel, VocalGuildChannel, PrivateChannel, PartialMessageable, ForumChannel] Channel = Union[GuildChannel, PrivateChannel, PartialMessageable]
MISSING = utils.MISSING MISSING = utils.MISSING
_log = logging.getLogger(__name__) _log = logging.getLogger(__name__)

Loading…
Cancel
Save