mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-08 10:53:10 +00:00
Absolute import some circular dependencies to appease Python 3.4.
This commit is contained in:
@ -24,8 +24,9 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
"""
|
||||
|
||||
from . import utils
|
||||
import datetime
|
||||
import discord.utils
|
||||
|
||||
from .enums import GuildRegion, try_enum
|
||||
from .member import VoiceState
|
||||
|
||||
@ -47,7 +48,7 @@ class CallMessage:
|
||||
|
||||
def __init__(self, message, **kwargs):
|
||||
self.message = message
|
||||
self.ended_timestamp = utils.parse_time(kwargs.get('ended_timestamp'))
|
||||
self.ended_timestamp = discord.utils.parse_time(kwargs.get('ended_timestamp'))
|
||||
self.participants = kwargs.get('participants')
|
||||
|
||||
@property
|
||||
|
Reference in New Issue
Block a user