aboutsummaryrefslogtreecommitdiff
path: root/discord/channel.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-04-18 04:22:35 -0400
committerRapptz <[email protected]>2017-04-18 04:22:35 -0400
commit1fc08bc5a2ad8bd8aba7b98c37eb6e9deeaa61c2 (patch)
tree932ace1acd9ca51117876241a6710f61015a3378 /discord/channel.py
parentProperly cleanup of VoiceClients in cache. (diff)
downloaddiscord.py-1fc08bc5a2ad8bd8aba7b98c37eb6e9deeaa61c2.tar.xz
discord.py-1fc08bc5a2ad8bd8aba7b98c37eb6e9deeaa61c2.zip
Remove unused imports.
Diffstat (limited to 'discord/channel.py')
-rw-r--r--discord/channel.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/discord/channel.py b/discord/channel.py
index 6478c47b..058f1d39 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -23,18 +23,14 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
"""
-from .permissions import Permissions, PermissionOverwrite
+from .permissions import Permissions
from .enums import ChannelType, try_enum
from .mixins import Hashable
-from .role import Role
-from .user import User
-from .member import Member
from . import utils
from .errors import ClientException, NoMoreItems
import discord.abc
-import copy
import time
import asyncio