From 53ab2631252bf0977446d762f07b3821edb151ee Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 17 Oct 2016 01:10:22 -0400 Subject: Split channel types. This splits them into the following: * DMChannel * GroupChannel * VoiceChannel * TextChannel This also makes the channels "stateful". --- discord/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord/__init__.py') diff --git a/discord/__init__.py b/discord/__init__.py index 1fd3d83c..55427cca 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -21,7 +21,7 @@ from .client import Client, AppInfo, ChannelPermissions from .user import User from .game import Game from .emoji import Emoji -from .channel import Channel, PrivateChannel +from .channel import * from .server import Server from .member import Member, VoiceState from .message import Message -- cgit v1.2.3