From 25f1b2d5034de964f0abea53087f500946628e74 Mon Sep 17 00:00:00 2001 From: andrei Date: Thu, 22 Jun 2017 15:35:48 -0700 Subject: [PATCH] [bugfix] move VoiceClient import into method to avoid warnings --- disco/types/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/types/channel.py b/disco/types/channel.py index a8d7936..bdc77a1 100644 --- a/disco/types/channel.py +++ b/disco/types/channel.py @@ -9,7 +9,6 @@ from disco.util.functional import cached_property, one_or_many, chunks from disco.types.user import User from disco.types.base import SlottedModel, Field, AutoDictField, snowflake, enum, text from disco.types.permissions import Permissions, Permissible, PermissionValue -from disco.voice.client import VoiceClient NSFW_RE = re.compile('^nsfw(-|$)') @@ -322,6 +321,7 @@ class Channel(SlottedModel, Permissible): """ Connect to this channel over voice. """ + from disco.voice.client import VoiceClient assert self.is_voice, 'Channel must support voice to connect' vc = VoiceClient(self) vc.connect(*args, **kwargs)