Browse Source

[bugfix] move VoiceClient import into method to avoid warnings

pull/38/head
andrei 8 years ago
parent
commit
25f1b2d503
  1. 2
      disco/types/channel.py

2
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)

Loading…
Cancel
Save